/* HCM Paycor — style.css v1
   Unique visual language: Clean corporate HR software aesthetic
   NOT similar to portal-forte.com or repay-online.com
   Font: Inter | Layout: 1200px max | Mobile-first
*/

/* ── Custom properties ───────────────────────────────────────── */
:root {
  --navy:   #004F9F;
  --blue:   #0075BE;
  --teal:   #00A3E0;
  --green:  #43B02A;
  --light:  #F4F7FB;
  --text:   #1A1A2E;
  --muted:  #6B7280;
  --border: #E5E9F0;
  --white:  #FFFFFF;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(0,79,159,.09);
  --shadow-md: 0 4px 24px rgba(0,79,159,.14);
  --transition: .18s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.85rem); margin-bottom: .75rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Announce Bar ────────────────────────────────────────────── */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  text-align: center;
  padding: .45rem 1rem;
  letter-spacing: .02em;
}
.announce-bar strong { color: #fff; font-weight: 600; }

/* ── Site Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,79,159,.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 30px; width: auto; }
.site-logo .logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}

/* Main nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  padding: .45rem .75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover {
  background: var(--light);
  color: var(--navy);
  text-decoration: none;
}
.main-nav a.active { color: var(--navy); font-weight: 600; }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
  color: #fff !important;
  font-size: .875rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
}
.header-cta:hover { background: var(--blue); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb-wrap {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
  list-style: none;
  padding: 0;
}
.breadcrumb li { display: flex; align-items: center; gap: .25rem; }
.breadcrumb a { color: var(--blue); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--muted); margin-left: .25rem; }

/* ── TL;DR Bar ───────────────────────────────────────────────── */
.tldr-bar {
  background: #EBF5FF;
  border: 1px solid #C3D9F0;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  align-items: center;
}
.tldr-bar .tldr-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  flex-basis: 100%;
  margin-bottom: .1rem;
}
.tldr-bar .tldr-item {
  font-size: .875rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tldr-bar .tldr-item a { color: var(--blue); font-weight: 500; }
.tldr-icon { color: var(--teal); font-size: 1rem; }

/* ── Hero Split ──────────────────────────────────────────────── */
.hero-split {
  background: linear-gradient(135deg, var(--navy) 0%, #003878 50%, #00295A 100%);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}
.hero-split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-left { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  width: fit-content;
}
.hero-left h1 { color: #fff; font-size: clamp(1.65rem, 3.5vw, 2.5rem); line-height: 1.2; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: #37961f; transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); text-decoration: none; color: #fff; }
.hero-disclaimer { font-size: .75rem; color: rgba(255,255,255,.5); }
.hero-right { position: relative; }
.hero-right img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  width: 100%;
}

/* ── Section spacing ─────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2rem 0; }
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── Login Portal Card ───────────────────────────────────────── */
.portal-card-wrap { display: flex; justify-content: center; padding: 2rem 0; }
.login-portal-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.login-portal-card .portal-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 1.5rem;
}
.login-portal-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.login-portal-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.url-chip {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  font-family: 'Courier New', monospace;
  color: var(--navy);
  padding: .25rem .8rem;
  margin-bottom: 1.25rem;
  word-break: break-all;
}
.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  width: 100%;
  justify-content: center;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-portal:hover { background: var(--blue); text-decoration: none; color: #fff; }
.portal-note { font-size: .75rem; color: var(--muted); margin-top: .75rem; margin-bottom: 0; }

/* Two login cards side by side */
.login-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.login-card-sm {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.login-card-sm.featured { border-color: var(--navy); border-width: 2px; }
.login-card-sm .card-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.login-card-sm .card-badge.green { background: var(--green); }
.login-card-sm h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.login-card-sm p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--navy);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
.btn-sm:hover { background: var(--blue); text-decoration: none; color: #fff; }

/* ── Login Box (inline, NOT cta-stripe) ─────────────────────── */
.login-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.login-box-text { font-size: .9rem; font-weight: 500; color: var(--text); }
.login-box-text small { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; }
.btn-login-box {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--navy);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-login-box:hover { background: var(--blue); text-decoration: none; color: #fff; }

/* ── Badges Strip ────────────────────────────────────────────── */
.badges-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.badges-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.badges-inner img { height: 60px; width: auto; object-fit: contain; filter: grayscale(20%); }
.badges-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; width: 100%; text-align: center; margin-bottom: .25rem; }

/* ── Feature Cards ───────────────────────────────────────────── */
.feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card-img { width: 100%; height: 160px; object-fit: cover; }
.feature-card-body { padding: 1rem 1.1rem 1.25rem; }
.feature-card-body h3 { font-size: 1rem; margin-bottom: .4rem; }
.feature-card-body p { font-size: .85rem; color: var(--muted); margin-bottom: .75rem; }
.feature-card-link { font-size: .85rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .25rem; }

/* ── Clients Strip ───────────────────────────────────────────── */
.clients-strip { padding: 2rem 0; }
.clients-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.clients-inner img { height: 40px; width: auto; object-fit: contain; filter: grayscale(60%); opacity: .75; transition: filter var(--transition), opacity var(--transition); }
.clients-inner img:hover { filter: grayscale(0%); opacity: 1; }
.clients-label { text-align: center; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; font-weight: 600; }

/* ── Stat Band ───────────────────────────────────────────────── */
.stat-band {
  background: linear-gradient(135deg, #003878 0%, var(--navy) 100%);
  color: #fff;
  padding: 3rem 0;
}
.stat-band .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .stat-number { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-item .stat-label { font-size: .875rem; color: rgba(255,255,255,.7); margin-top: .35rem; }

/* ── Article Layout (2/3 + 1/3) ─────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
}
.article-body h2 { margin-top: 2rem; margin-bottom: .75rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 1.5rem; color: var(--navy); }
.article-body ul, .article-body ol { margin-bottom: 1rem; }
.article-body li { margin-bottom: .4rem; }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; box-shadow: var(--shadow); }

/* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.sidebar-card.featured {
  border-color: var(--navy);
  background: #EBF5FF;
}
.sidebar-card h4 { font-size: .95rem; margin-bottom: .75rem; color: var(--navy); }
.sidebar-card p { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.sidebar-card ul { font-size: .875rem; list-style: none; padding: 0; margin-bottom: .75rem; }
.sidebar-card ul li { padding: .3rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--blue); }
.sidebar-phone { font-size: 1.15rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: .25rem; }

/* ── HowTo Steps ─────────────────────────────────────────────── */
.howto-steps { counter-reset: step; display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.howto-step {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 { font-size: 1rem; margin-bottom: .35rem; }
.step-content p { font-size: .9rem; color: var(--muted); margin-bottom: 0; }

/* ── Comparison Table ────────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .875rem;
}
.comparison-table th:first-child { width: 30%; }
.comparison-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--light); }
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .label-col { font-weight: 600; color: var(--text); }

/* ── Troubleshoot Table ──────────────────────────────────────── */
.trouble-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin: 1.25rem 0;
}
.trouble-table th { background: var(--light); padding: .7rem 1rem; text-align: left; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-bottom: 2px solid var(--border); }
.trouble-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.trouble-table .issue { font-weight: 600; color: #c0392b; }
.trouble-table .fix { color: var(--text); }

/* ── FAQ List ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.25rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item summary:hover { background: var(--light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item[open] summary { background: var(--light); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Nav Feature (HCM page) ──────────────────────────────────── */
.nav-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; }
.nav-feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  background: var(--white);
}
.nav-feature-card img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.nav-feature-card h4 { font-size: .95rem; margin-bottom: .2rem; }
.nav-feature-card p { font-size: .8rem; color: var(--muted); margin: 0; }

/* ── Support / Contact Cards ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card .contact-icon { font-size: 2rem; margin-bottom: .75rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.contact-card p { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.contact-card .phone-big { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.contact-card a.btn-sm { margin-top: .5rem; }

/* ── Pros/Cons Grid ──────────────────────────────────────────── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-box, .cons-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid #e74c3c; }
.pros-box h4 { color: var(--green); margin-bottom: .75rem; }
.cons-box h4 { color: #e74c3c; margin-bottom: .75rem; }
.pros-box ul, .cons-box ul { font-size: .875rem; }
.pros-box ul li::marker { color: var(--green); }
.cons-box ul li::marker { color: #e74c3c; }

/* ── 3-col bordered list ─────────────────────────────────────── */
.bordered-list-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.bordered-list-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: .875rem;
  color: var(--text);
}
.bordered-list-item strong { display: block; color: var(--navy); margin-bottom: .25rem; }

/* ── Content section with image ──────────────────────────────── */
.content-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2rem 0;
}
.content-with-img.reverse { direction: rtl; }
.content-with-img.reverse > * { direction: ltr; }
.content-with-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* ── Alert/Info boxes ────────────────────────────────────────── */
.alert-info {
  background: #EBF5FF;
  border: 1px solid #C3D9F0;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  margin: 1.25rem 0;
}
.alert-info strong { color: var(--navy); }
.alert-warn {
  background: #FFF9E6;
  border: 1px solid #F5D94A;
  border-left: 4px solid #F5A623;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  margin: 1.25rem 0;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: #0A1628; color: rgba(255,255,255,.8); padding: 3rem 0 0; font-size: .875rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand img { height: 28px; width: auto; margin-bottom: .75rem; filter: brightness(10); }
.footer-brand .tagline { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.5; max-width: 280px; }
.footer-col h5 { color: rgba(255,255,255,.95); font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); transition: color var(--transition); font-size: .85rem; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom .disclaimer { line-height: 1.6; max-width: 900px; }
.footer-bottom-row { display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between; align-items: start; }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.45); }
.footer-legal-links a:hover { color: rgba(255,255,255,.75); }

/* ── Naming section ──────────────────────────────────────────── */
.naming-box {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.naming-box h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.naming-table { width: 100%; font-size: .875rem; border-collapse: collapse; }
.naming-table th { text-align: left; padding: .5rem .75rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--border); }
.naming-table td { padding: .55rem .75rem; border-bottom: 1px solid var(--border); }
.naming-table tr:last-child td { border-bottom: none; }
.naming-table .same { color: var(--green); font-weight: 600; }

/* ── About / Privacy / Utility pages ────────────────────────── */
.util-page { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }
.util-page h1 { margin-bottom: 1.5rem; }
.util-page h2 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: .5rem; }

/* ── IndexNow page ───────────────────────────────────────────── */
.indexnow-wrap { font-family: monospace; padding: 2rem; }

/* ── Mobile / Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-band .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .nav-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-split .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .65rem .75rem; }
  .nav-toggle { display: block; }
  .header-cta { font-size: .8rem; padding: .45rem .9rem; }
  .login-cards-grid { grid-template-columns: 1fr; }
  .content-with-img { grid-template-columns: 1fr; }
  .content-with-img.reverse { direction: ltr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .bordered-list-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-band .stat-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { display: flex; flex-direction: column; }
  .tldr-bar { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .feature-cards { grid-template-columns: 1fr; }
  .stat-band .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
