/* ============================================================
   Shiptrack — shared marketing site styles
   Used on: index.html (home), pricing, features, solutions,
   about, contact, login, legal
   ============================================================ */

body { background: white; color: var(--color-slate-900); }

/* ─── Top navigation ─────────────────────────────────────── */
.mkt-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--color-slate-200);
}
.mkt-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.mkt-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
.mkt-logo .mark {
  width: 32px; height: 32px;
  background: var(--color-slate-900);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.mkt-logo .name { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; }
.mkt-logo .name span { color: var(--color-primary-600); }

.mkt-nav-links { display: flex; gap: 4px; flex: 1; }
.mkt-nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-slate-600);
  font-size: 14px; font-weight: 500;
  transition: all 0.15s;
}
.mkt-nav-links a:hover { background: var(--color-slate-50); color: var(--color-slate-900); }
.mkt-nav-links a.active { color: var(--color-slate-900); font-weight: 600; }

.mkt-nav-cta { display: flex; gap: 8px; align-items: center; }

/* ─── Buttons ───────────────────────────────────────────── */
.mkt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  font-family: inherit;
}
.mkt-btn-primary { background: var(--color-slate-900); color: white; }
.mkt-btn-primary:hover { background: var(--color-slate-800); transform: translateY(-1px); box-shadow: var(--sh-md); }
.mkt-btn-accent { background: var(--color-primary-600); color: white; }
.mkt-btn-accent:hover { background: var(--color-primary-700); transform: translateY(-1px); box-shadow: var(--sh-md); }
.mkt-btn-ghost { background: white; color: var(--color-slate-900); border-color: var(--color-slate-200); }
.mkt-btn-ghost:hover { background: var(--color-slate-50); border-color: var(--color-slate-300); }
.mkt-btn-lg { padding: 15px 24px; font-size: 15px; }

/* ─── Generic sections ──────────────────────────────────── */
.mkt-section { padding: 96px 32px; }
.mkt-section-tight { padding: 64px 32px; }
.mkt-section-inner { max-width: 1200px; margin: 0 auto; }
.mkt-section-dark { background: var(--color-primary-900); color: white; }
.mkt-section-soft { background: var(--color-slate-50); }

.mkt-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  border: 1px solid var(--color-primary-100);
  letter-spacing: 0.02em;
}
.mkt-eyebrow.saffron {
  background: var(--color-saffron-50);
  color: var(--color-saffron);
  border-color: #fed7aa;
}
.mkt-eyebrow.dark {
  background: rgba(255,255,255,0.08);
  color: var(--color-primary-300);
  border-color: rgba(255,255,255,0.12);
}

.mkt-h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 20px 0 18px;
}
.mkt-h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 14px;
}
.mkt-h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.mkt-lead {
  font-size: 18px;
  color: var(--color-slate-600);
  line-height: 1.6;
  max-width: 640px;
}
.mkt-lead-center { margin-left: auto; margin-right: auto; text-align: center; }
.mkt-section-dark .mkt-lead { color: rgba(255,255,255,0.7); }

.mkt-text-grad {
  background: linear-gradient(90deg, #16a34a 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero background patterns ──────────────────────────── */
.mkt-grid-bg {
  background-image:
    radial-gradient(circle at 15% 0%, rgba(22, 163, 74, 0.10), transparent 35%),
    radial-gradient(circle at 85% 5%, rgba(249, 115, 22, 0.07), transparent 35%),
    linear-gradient(to right, rgb(15 23 42 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(15 23 42 / 0.04) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
}

/* ─── Cards ─────────────────────────────────────────────── */
.mkt-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
}
.mkt-card:hover { border-color: var(--color-primary-200); }

.mkt-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ─── Trust logos strip ─────────────────────────────────── */
.mkt-trust-logo {
  height: 28px; line-height: 28px;
  color: var(--color-slate-400);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ─── Form controls ─────────────────────────────────────── */
.mkt-input, .mkt-textarea, .mkt-select {
  width: 100%;
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-slate-900);
  outline: none;
  transition: all 0.15s;
}
.mkt-input:focus, .mkt-textarea:focus, .mkt-select:focus {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.mkt-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 6px;
  display: block;
}

/* ─── Footer ────────────────────────────────────────────── */
.mkt-footer {
  background: var(--color-primary-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 32px 32px;
}
.mkt-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.mkt-footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin: 0 0 14px;
}
.mkt-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mkt-footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.mkt-footer-col a:hover { color: white; }
.mkt-footer-brand .logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.mkt-footer-brand .logo .mark {
  width: 32px; height: 32px;
  background: var(--color-primary-500);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-900);
}
.mkt-footer-brand .logo .name { color: white; font-size: 17px; font-weight: 800; letter-spacing: -0.015em; }
.mkt-footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.mkt-footer-brand .india-stripe {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.mkt-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.mkt-footer-bottom .legal-links { display: flex; gap: 18px; }
.mkt-footer-bottom .legal-links a { color: rgba(255,255,255,0.55); text-decoration: none; }
.mkt-footer-bottom .legal-links a:hover { color: white; }

/* ─── Mobile breakpoints ────────────────────────────────── */
@media (max-width: 880px) {
  .mkt-nav-links { display: none; }
  .mkt-section { padding: 64px 24px; }
  .mkt-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
