/* TeleSmarter Marketing — v2 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #2563eb;
  --brand-dark:   #1d4ed8;
  --brand-light:  #eff6ff;
  --accent:       #38bdf8;
  --dark:         #0a0f1e;
  --navy:         #111827;
  --ink:          #1e293b;
  --text:         #374151;
  --muted:        #6b7280;
  --subtle:       #9ca3af;
  --border:       #e5e7eb;
  --border-dark:  #1f2937;
  --surface:      #f9fafb;
  --white:        #ffffff;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 20px 48px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Nav ──────────────────────────────────────────── */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mkt-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mkt-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.mkt-nav__logo strong { color: var(--brand); font-weight: 800; }
.mkt-nav__logomark { width: 32px; height: 32px; flex-shrink: 0; }
.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
}
.mkt-nav__links a:not(.mkt-btn) { transition: color .15s; }
.mkt-nav__links a:not(.mkt-btn):hover { color: var(--ink); }

/* ── Buttons ──────────────────────────────────────── */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: .875rem;
  line-height: 1;
  padding: 9px 20px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -.01em;
}
.mkt-btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: 0 1px 2px rgba(37,99,235,.25), inset 0 1px 0 rgba(255,255,255,.12);
}
.mkt-btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(37,99,235,.4), inset 0 1px 0 rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.mkt-btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.mkt-btn--outline:hover { background: var(--brand-light); }
.mkt-btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.mkt-btn--ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.mkt-btn--white {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
  box-shadow: var(--shadow);
}
.mkt-btn--white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.mkt-btn--lg { padding: 14px 28px; font-size: .9375rem; border-radius: 10px; }

/* ── Hero ─────────────────────────────────────────── */
.mkt-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 96px 32px 80px;
  display: flex;
  justify-content: center;
}
.mkt-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(37,99,235,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(56,189,248,.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0f1e 0%, #0f1a2e 100%);
}
.mkt-hero__inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.mkt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.35);
  color: #93c5fd;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.mkt-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }

.mkt-hero__headline {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.mkt-hero__accent {
  background: linear-gradient(90deg, #60a5fa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mkt-hero__sub {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.mkt-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.mkt-hero__note { font-size: .8rem; color: #475569; }

/* ── Dashboard widget ─────────────────────────────── */
.mkt-dashboard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
  backdrop-filter: blur(12px);
}
.mkt-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mkt-dashboard__title {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}
.mkt-dashboard__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: #22c55e;
}
.mkt-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-dot 1.8s infinite;
}
.mkt-dashboard__calls { padding: 8px 0; }
.mkt-call-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
}
.mkt-call-row:last-child { border-bottom: none; }
.mkt-call-row:hover { background: rgba(255,255,255,.03); }
.mkt-call-row--queue { background: rgba(56,189,248,.04); }
.mkt-call-row__dir {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.mkt-call-row__dir--in  { background: rgba(34,197,94,.12); color: #4ade80; }
.mkt-call-row__dir--out { background: rgba(99,102,241,.12); color: #a5b4fc; }
.mkt-call-row__dir--wait { background: rgba(251,191,36,.12); color: #fbbf24; }
.mkt-call-row__info { flex: 1; min-width: 0; }
.mkt-call-row__name { display: block; font-size: .82rem; font-weight: 600; color: #e2e8f0; }
.mkt-call-row__num  { display: block; font-size: .75rem; color: #475569; margin-top: 1px; }
.mkt-call-row__timer {
  font-size: .78rem;
  font-weight: 600;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}
.mkt-call-row__badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(56,189,248,.1);
  padding: 3px 8px;
  border-radius: 100px;
  animation: pulse-dot 1.5s infinite;
}
.mkt-dashboard__stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
}
.mkt-stat { flex: 1; text-align: center; }
.mkt-stat + .mkt-stat { border-left: 1px solid rgba(255,255,255,.06); }
.mkt-stat__num { font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.mkt-stat__label { font-size: .7rem; color: #475569; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* ── Logos ────────────────────────────────────────── */
.mkt-logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  background: var(--surface);
}
.mkt-logos__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.mkt-logos__label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--subtle);
  margin-bottom: 16px;
}
.mkt-logos__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.mkt-logos__row span {
  font-size: .875rem;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: .01em;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.mkt-logos__row span:last-child { border-right: none; }

/* ── Section shared ───────────────────────────────── */
.mkt-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.mkt-section-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.mkt-section-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.mkt-section-header p { font-size: 1rem; color: var(--muted); line-height: 1.65; }

/* ── Features ─────────────────────────────────────── */
.mkt-features { padding: 104px 32px; background: var(--white); }
.mkt-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mkt-feat {
  background: var(--white);
  padding: 36px 32px;
  transition: background .2s;
}
.mkt-feat:hover { background: var(--surface); }
.mkt-feat__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
}
.mkt-feat__icon-wrap svg { width: 18px; height: 18px; }
.mkt-feat h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.mkt-feat p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── Solutions ────────────────────────────────────── */
.mkt-solutions { padding: 104px 32px; background: var(--surface); }
.mkt-solutions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.mkt-solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.mkt-solution-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow);
}
.mkt-solution-card__tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--brand);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.mkt-solution-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 16px;
}
.mkt-solution-card--featured .mkt-solution-card__icon { background: var(--brand); color: var(--white); }
.mkt-solution-card__icon svg { width: 16px; height: 16px; }
.mkt-solution-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.015em;
}
.mkt-solution-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.mkt-solution-card ul { display: flex; flex-direction: column; gap: 9px; }
.mkt-solution-card li {
  font-size: .8375rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.mkt-solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* ── CTA ──────────────────────────────────────────── */
.mkt-cta {
  background: var(--dark);
  padding: 104px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mkt-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37,99,235,.3) 0%, transparent 70%);
  pointer-events: none;
}
.mkt-cta__inner { position: relative; max-width: 600px; margin: 0 auto; }
.mkt-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.mkt-cta p { font-size: 1rem; color: #64748b; margin-bottom: 36px; line-height: 1.65; }
.mkt-cta__buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────── */
.mkt-footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 40px 32px;
}
.mkt-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mkt-footer__left p { font-size: .8rem; color: #374151; margin-top: 4px; }
.mkt-footer__brand {
  font-size: 1.05rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: -.01em;
}
.mkt-footer__brand strong { color: var(--brand); font-weight: 800; }
.mkt-footer__copy { font-size: .8rem; color: #374151; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .mkt-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .mkt-hero__gfx { max-width: 480px; }
  .mkt-features__grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-solutions__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .mkt-hero, .mkt-features, .mkt-solutions, .mkt-cta { padding-left: 20px; padding-right: 20px; }
  .mkt-nav__inner { padding: 0 20px; }
  .mkt-nav__links a:not(.mkt-btn) { display: none; }
  .mkt-features__grid { grid-template-columns: 1fr; }
  .mkt-hero__gfx { display: none; }
  .mkt-hero__ctas, .mkt-cta__buttons { flex-direction: column; align-items: stretch; }
  .mkt-btn--lg { justify-content: center; }
  .mkt-footer__inner { flex-direction: column; align-items: flex-start; }
  .mkt-logos__row span { padding: 4px 16px; }
}
