/* All Access IDM — shared stylesheet */

:root {
  --navy: #0f1e3c;
  --navy-light: #16295a;
  --blue: #2e5aa8;
  --blue-light: #4a76c9;
  --accent: #1fb6a3;
  --bg: #f5f7fb;
  --bg-alt: #eef1f8;
  --card: #ffffff;
  --border: #dfe4ee;
  --text: #1c2536;
  --text-muted: #5b6478;
  --text-inverse: #f5f7fb;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(15, 30, 60, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 30, 60, 0.12);
  --max-width: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: 2.75rem; letter-spacing: -0.5px; }
h2 { font-size: 2rem; letter-spacing: -0.3px; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #06231e;
}
.btn-primary:hover { background: #29d1bb; color: #06231e; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--text-inverse);
}
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-light); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* Header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 30, 60, 0.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.94rem;
}
nav.main-nav a:hover { color: var(--blue); }
nav.main-nav a.current { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.nav-cta .btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .nav-cta .btn-outline { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, #1a3568 100%);
  color: var(--text-inverse);
  padding: 90px 0 100px;
}
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,0.78); }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat-num { font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stats .stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.62); }

/* Sections */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .hero { padding: 60px 0 70px; }
  section { padding: 56px 0; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }

/* Problem/solution split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist .mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #06231e;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  margin-top: 2px;
}

/* Logos strip */
.logos-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.75;
}
.logos-strip .logo-chip {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

/* Quote */
.quote-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.quote-block blockquote {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 18px;
  color: #fff;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.quote-block cite { color: rgba(255,255,255,0.6); font-style: normal; font-size: 0.9rem; }

/* Table */
table.pricing-table, table.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.pricing-table th, table.compare-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-size: 0.9rem;
}
table.pricing-table td, table.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
table.compare-table td.yes { color: var(--accent); font-weight: 700; }
table.compare-table td.no { color: #c2c9d6; }

/* Pricing cards */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card.featured::before {
  content: "MOST COMMON";
  position: absolute;
  top: -13px; left: 28px;
  background: var(--accent);
  color: #06231e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 5px;
}
.pricing-card .plan-name { font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.pricing-card .plan-for { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; }
.pricing-card .plan-price { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card .plan-price strong { font-size: 2.1rem; color: var(--navy); }
.pricing-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.pricing-card li { padding: 7px 0; font-size: 0.92rem; display: flex; gap: 8px; }
.pricing-card li::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  margin-bottom: 16px;
  background: #fbfcfe;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--blue-light); }

/* Badges / tags */
.tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 12px;
}

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute; left: 8px; top: 4px; bottom: 4px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -28px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}

/* Resource cards */
.resource-card { display: flex; flex-direction: column; height: 100%; }
.resource-card .tag { align-self: flex-start; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid a { color: rgba(255,255,255,0.65); display: block; margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid .logo { color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* Page hero (non-home) */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 68px;
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.75); }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }

.two-col-icon-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }
@media (max-width: 700px) { .two-col-icon-list { grid-template-columns: 1fr; } }

.small-note { font-size: 0.85rem; color: var(--text-muted); }

/* Article / long-form content */
.article-body { max-width: 700px; margin: 0 auto; }
.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.article-body h2 { margin-top: 40px; }
.article-body h3 { margin-top: 28px; }
.article-body p, .article-body li { color: var(--text); }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 20px; }
.article-body li { padding: 4px 0; }
.article-body blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
  font-style: italic;
}
.article-callout {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.article-callout h4 { margin-bottom: 8px; color: var(--navy); }
.related-articles a { display: block; margin-bottom: 8px; }
