/* =========================================================
   CONTENTPROTECTOR.EU - STATIC SITE STYLESHEET
   Palette: Deep Navy (trust/legal) + Gold Seal (certification)
   Display: Fraunces (autorevole) / Body: Inter / Mono: JetBrains Mono (hash)
   ========================================================= */

:root {
  --navy-950: #0a1a2e;
  --navy-900: #0f2c4c;
  --navy-700: #1c4066;
  --navy-500: #3a6690;
  --gold-500: #c9a227;
  --gold-400: #dab94a;
  --gold-100: #f7edcc;
  --paper: #ffffff;
  --paper-soft: #f7f8fa;
  --ink: #14202e;
  --ink-soft: #4a5568;
  --line: #e2e6ea;
  --success: #2f6f4e;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(15, 44, 76, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 44, 76, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--gold-500); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
p { margin-bottom: 16px; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-950);
  display: flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 40px;
  width: auto;
}
.logo span { color: var(--gold-500); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.nav-links a:hover { color: var(--navy-700); }
.nav-group-title {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-group-title::after {
  content: "\25BE";
  font-size: 0.7rem;
  color: var(--ink-soft);
}
.nav-group { position: relative; }
.nav-sublist {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 14px 0 8px;
  margin-top: 0;
  z-index: 200;
  list-style: none;
}
.nav-group:hover .nav-sublist,
.nav-group:focus-within .nav-sublist {
  display: block;
}
.nav-sublist li { width: 100%; }
.nav-sublist a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: normal;
  line-height: 1.3;
}
.nav-sublist a:hover {
  background: var(--paper-soft);
  color: var(--navy-700);
}
.nav-cta {
  background: var(--navy-950);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-500); color: var(--navy-950) !important; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------- Hamburger menu (mobile only) ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.submenu-bar {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.submenu-bar .container { display: flex; gap: 22px; padding: 10px 24px; flex-wrap: wrap; }
.submenu-bar a { color: var(--ink-soft); }
.submenu-bar a:hover { color: var(--navy-700); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50%;
}
.hero::before {
  content: "";
  position: absolute;
  right: 40px; top: 40px;
  width: 300px; height: 300px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero .lede { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold-500); color: var(--navy-950) !important; }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-400) !important; }
.btn-navy { background: var(--navy-950); color: #fff !important; }
.btn-navy:hover { background: var(--navy-700); }

/* ---------- Hash motif divider ---------- */
.hash-divider {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--line);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-soft { background: var(--paper-soft); }
.section-navy { background: var(--navy-950); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.75); }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grid / Cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card-seal {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.scenario-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
}
.scenario-card.highlight {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-950);
}
.scenario-card.highlight h3 { color: #fff; }
.scenario-card.highlight p { color: rgba(255,255,255,0.75); }

/* ---------- Steps ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 0;
}
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--gold-500);
  font-weight: 700;
}

/* ---------- Table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--navy-950);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: #b02a2a; font-weight: 700; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.badge-green { background: #2f9e5c; }
.badge-orange { background: #e0a12e; }
.badge-red { background: #d64545; }
.badge-gray { background: #7a8492; }
.badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 4px;
}
.notes-list {
  list-style: none;
  font-size: 0.85rem;
  line-height: 1.6;
}
.notes-list li { padding-left: 20px; position: relative; }
.notes-list li.ok::before { content: "\2713"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.notes-list li.bad::before { content: "\2717"; position: absolute; left: 0; color: #b02a2a; font-weight: 700; }
.method-row-highlight { background: #eef8f1; }
.method-name {
  font-weight: 700;
  color: var(--navy-950);
}
.method-name .badge-sub { margin-top: 2px; }

/* ---------- Colorful step cards (How it works) ---------- */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-cards .wide { grid-column: span 1; }
.step-cards .row-2 { grid-column: span 1.5; }
.step-card {
  border-radius: 14px;
  padding: 30px 28px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.step-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.step-card .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.step-card p { font-size: 0.92rem; }
.step-card.c-green  { background: linear-gradient(135deg, #d4f2df, #eafaf0); border-color: #4caf7d; color: #1c4a30; }
.step-card.c-green h3 { color: #1c4a30; }
.step-card.c-green p { color: #2c5c40; }
.step-card.c-blue   { background: linear-gradient(135deg, #d6e6fb, #eaf3ff); border-color: #4a86d8; color: #1a3a63; }
.step-card.c-blue h3 { color: #1a3a63; }
.step-card.c-blue p { color: #2c4d75; }
.step-card.c-orange { background: linear-gradient(135deg, #fde3b8, #fff0d6); border-color: #e0a12e; color: #6b4a12; }
.step-card.c-orange h3 { color: #6b4a12; }
.step-card.c-orange p { color: #7a5a1e; }
.step-card.c-purple { background: linear-gradient(135deg, #e3d9fb, #f0eafd); border-color: #8e6fd8; color: #402e70; }
.step-card.c-purple h3 { color: #402e70; }
.step-card.c-purple p { color: #4e3c7a; }
.step-card.c-red    { background: linear-gradient(135deg, #fbd6d6, #fde9e9); border-color: #d86a6a; color: #6b1f1f; }
.step-card.c-red h3 { color: #6b1f1f; }
.step-card.c-red p { color: #7a2e2e; }
.step-card .mini-list { list-style:none; font-size:0.9rem; }
.step-card .mini-list li { margin-bottom:6px; }

@media (max-width: 900px) {
  .step-cards { grid-template-columns: 1fr; }
}

/* ---------- Badge header (gradient pill, "What is ContentProtector?") ---------- */
.badge-header {
  display: inline-block;
  background: linear-gradient(90deg, #4b3fd6, #6a5cf0);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

/* ---------- Info callout (folder/emoji highlight box) ---------- */
.info-callout {
  background: var(--paper-soft);
  border-left: 4px solid var(--navy-700);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.98rem;
}

/* ---------- Feature list with emoji markers ---------- */
.feature-list {
  list-style: none;
  margin: 18px 0;
}
.feature-list li {
  padding: 8px 0 8px 4px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: var(--ink); }

.two-col-real { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 28px 0; }
.real-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.real-card h3 { font-size: 1.15rem; }

@media (max-width: 900px) {
  .two-col-real { grid-template-columns: 1fr; }
}

/* ---------- Detailed info accordion (cascading sections) ---------- */
.detail-accordion {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 18px 0;
  background: var(--paper);
}
.detail-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-accordion summary::-webkit-details-marker { display: none; }
.detail-accordion summary::after {
  content: "Show details +";
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-500);
  white-space: nowrap;
  margin-left: 16px;
}
.detail-accordion[open] summary::after { content: "Hide details \2212"; }
.detail-accordion .detail-body { padding: 0 28px 32px; }
.detail-accordion .detail-body h3 {
  margin-top: 32px;
  font-size: 1.2rem;
}
.detail-accordion .detail-body h3:first-child { margin-top: 0; }

.warn-box {
  background: #e9f2fd;
  border-left: 4px solid #3a7fd8;
  border-radius: 6px;
  padding: 18px 22px;
  margin: 16px 0;
  color: #1a3a63;
  font-size: 0.95rem;
}
.warn-box p { color: #1a3a63; }
.warn-box strong { color: #0f2c4c; }

.deny-list { list-style: none; margin: 16px 0; }
.deny-item {
  background: #fff;
  border-left: 3px solid #3a7fd8;
  border-radius: 4px;
  padding: 12px 18px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #1a3a63;
  font-weight: 600;
}
.deny-item::before { content: "\2717 "; color: #d64545; }

.success-box {
  background: #eef8f1;
  border: 2px solid #2f9e5c;
  border-radius: 8px;
  padding: 22px 26px;
  text-align: center;
  margin: 20px 0 10px;
}
.success-box .headline { color: #1c4a30; font-weight: 700; font-size: 1.05rem; }
.success-box .sub { color: #2c5c40; font-size: 0.88rem; margin-top: 4px; }

.type-block { margin: 24px 0; }
.type-block h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.type-block ul { margin: 0 0 0 20px; color: var(--ink-soft); font-size: 0.94rem; }
.type-block li { margin-bottom: 4px; }

/* ---------- Network list (About Us) ---------- */
.network-list {
  list-style: none;
  margin: 16px 0 28px;
}
.network-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.network-list li:last-child { border-bottom: none; }
.network-list a { font-weight: 600; }

.diamond-eyebrow {
  text-align: center;
  color: var(--navy-700);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.office-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 24px 0;
}

/* ---------- Headquarters card + map ---------- */
.hq-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hq-box img { margin: 0; border-radius: 0; }
.hq-card-body { padding: 20px 22px; background: var(--paper-soft); }
.hq-card-body h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.hq-card-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hq-card-body p:last-child { margin-bottom: 0; }

.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 32px;
  box-shadow: var(--shadow);
}

/* ---------- Uses page: icon quad ---------- */
.icon-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 28px 0;
  text-align: center;
}
.icon-quad .item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
}
.icon-quad .item .ic { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.icon-quad .item strong { display: block; color: var(--navy-950); font-size: 0.95rem; margin-bottom: 4px; }
.icon-quad .item span.sub { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Navy tagline box ---------- */
.navy-tagline-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  color: #fff;
  margin: 32px 0 20px;
}
.navy-tagline-box h2 { color: #fff; font-size: 1.6rem; }
.navy-tagline-box p { color: rgba(255,255,255,0.82); max-width: 640px; margin: 10px auto 0; }

/* ---------- Green "Every Certification Includes" box ---------- */
.green-banner {
  background: linear-gradient(135deg, #2f9e5c, #257d48);
  border-radius: 12px;
  padding: 36px;
  margin: 24px 0;
}
.green-banner h2 { color: #fff; text-align:center; margin-bottom: 24px; }
.green-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.green-banner-grid .gcard {
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 18px 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.green-banner-grid .gcard strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* ---------- Category index (orange/red gradient box) ---------- */
.category-index-box {
  background: linear-gradient(135deg, #e0563a, #d6395e);
  border-radius: 12px;
  padding: 32px;
  margin: 24px 0 40px;
}
.category-index-box h2 { color: #fff; margin-bottom: 20px; }
.category-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.category-pill {
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-950) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.category-pill:hover { background: #fff; }

/* ---------- Category detail sections (cycling colored headers) ---------- */
.category-section { scroll-margin-top: 90px; }
.category-section .container { max-width: 900px; }
.cat-header {
  border-radius: 10px 10px 0 0;
  padding: 18px 26px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 24px 26px;
  margin-bottom: 28px;
}
.cat-body p { margin-bottom: 12px; }
.cat-body p:last-child { margin-bottom: 0; }
.cat-1 { background: linear-gradient(120deg,#5b4fd8,#8a5fe0); }
.cat-2 { background: linear-gradient(120deg,#d8386f,#e0637f); }
.cat-3 { background: linear-gradient(120deg,#2f9e5c,#4fb87a); }
.cat-4 { background: linear-gradient(120deg,#1c4066,#3a6690); }
.cat-5 { background: linear-gradient(120deg,#c9862a,#e0a12e); }
.cat-6 { background: linear-gradient(120deg,#a8478a,#c968a8); }
.cat-7 { background: linear-gradient(120deg,#3a7fd8,#5fa0e8); }
.cat-8 { background: linear-gradient(120deg,#b8402e,#d6604a); }

/* ---------- Service Costs page ---------- */
.plan-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.plan-card {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  background: var(--paper);
}
.plan-card.featured { border-color: var(--gold-500); box-shadow: var(--shadow); }
.plan-card h3 { display:flex; align-items:center; gap:10px; }
.plan-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-950);
  font-weight: 700;
  margin: 14px 0 4px;
}
.plan-card .price .unit { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; }
.plan-card ul { list-style: none; margin-top: 16px; }
.plan-card li {
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.plan-card li:last-child { border-bottom: none; }
.plan-card li::before { content: "\2713 "; color: var(--success); font-weight: 700; }

.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.detail-cards .dcard {
  background: var(--paper-soft);
  border-radius: 8px;
  padding: 20px 22px;
}
.detail-cards .dcard h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.detail-cards .dcard p { font-size: 1rem; color: var(--ink-soft); margin: 0; }

.plan-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}
.plan-dot.white { background:#e8e8e8; border:1px solid #ccc; }
.plan-dot.yellow { background:#e8c93a; }
.plan-dot.red { background:#d64545; }
.plan-dot.green { background:#2f9e5c; }
.plan-dot.pink { background:#e06a9a; }
.plan-dot.blue { background:#3a7fd8; }
.plan-dot.purple { background:#8a5fe0; }
.plan-dot.gold { background:#c9a227; }

.pricing-table th, .pricing-table td { text-align:center; }
.pricing-table td:first-child, .pricing-table th:first-child { text-align:left; }

@media (max-width: 900px) {
  .plan-compare-grid { grid-template-columns: 1fr; }
  .detail-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .detail-cards { grid-template-columns: 1fr; }
}

/* ---------- One Express page ---------- */
.compare-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.compare-2col .box {
  border-radius: 10px;
  padding: 22px 24px;
  border: 2px solid;
}
.compare-2col .box.bad { border-color: #d64545; background: #fdf1f1; }
.compare-2col .box.good { border-color: #2f9e5c; background: #eef8f1; }
.compare-2col .box h4 { display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.compare-2col .box.bad h4 { color:#b02a2a; }
.compare-2col .box.good h4 { color:#1c4a30; }
.compare-2col .box p { margin:0; font-size:0.92rem; }

.gradient-banner {
  background: linear-gradient(120deg, var(--navy-900), #6a4fd8);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  color: #fff;
  margin: 28px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.trust-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.trust-cards-4 .tc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
}
.trust-cards-4 .tc .ic { font-size: 1.6rem; display:block; margin-bottom:10px; }
.trust-cards-4 .tc h4 { font-family: var(--font-display); color: var(--navy-950); font-size: 1.02rem; margin-bottom: 8px; }
.trust-cards-4 .tc p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.qa-card {
  background: var(--paper);
  border-left: 4px solid var(--navy-700);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.qa-card h4 {
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.qa-card p { font-size: 0.95rem; }
.qa-card ul { margin: 8px 0 0 20px; font-size: 0.92rem; color: var(--ink-soft); }
.qa-card li { margin-bottom: 4px; }

.step-num-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.step-num-card .snc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
}
.step-num-card .num-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--navy-950);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.step-num-card h4 { font-family: var(--font-display); color: var(--navy-950); font-size: 1.02rem; margin-bottom: 8px; }
.step-num-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 4px; }
.step-num-card .highlight { color: var(--success); font-weight: 600; }

@media (max-width: 900px) {
  .compare-2col { grid-template-columns: 1fr; }
  .trust-cards-4 { grid-template-columns: repeat(2,1fr); }
  .qa-grid { grid-template-columns: 1fr; }
  .step-num-card { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .trust-cards-4 { grid-template-columns: 1fr; }
  .step-num-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .icon-quad { grid-template-columns: repeat(2,1fr); }
  .green-banner-grid { grid-template-columns: repeat(2,1fr); }
  .category-index-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .icon-quad { grid-template-columns: 1fr; }
  .green-banner-grid { grid-template-columns: 1fr; }
  .category-index-grid { grid-template-columns: 1fr; }
  .navy-tagline-box, .green-banner, .category-index-box { padding: 24px 20px; }
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 22px 0;
  color: var(--navy-950);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--gold-500);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-body { padding-bottom: 24px; max-width: 720px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-500);
  font-weight: 700;
  display: block;
}
.trust-stat .label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-100), var(--paper-soft));
  border: 1px solid var(--gold-100);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 30px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.footer-grid p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.65); }
.footer-grid a:hover { color: var(--gold-400); }
.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.85rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.85);
}
.footer-bottom a:hover {
  color: var(--gold-400);
}

/* ---------- Legal page (privacy/conditions) ---------- */
.legal-content h2 { margin-top: 40px; }
.legal-content h3 { margin-top: 28px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 20px; color: var(--ink-soft); }
.legal-content li { margin-bottom: 8px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 24px 0 0;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--navy-700); }

/* ---------- Page hero (inner pages, lighter than home) ---------- */
.page-hero {
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-hero .lede { max-width: 640px; font-size: 1.05rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .submenu-bar { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 1.12rem;
  }
  .nav-group-title {
    display: block;
    padding: 18px 20px 8px;
    font-weight: 700;
    color: var(--navy-950);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .nav-sublist {
    display: block;
    list-style: none;
    position: static;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }
  .nav-sublist a {
    display: block;
    padding: 12px 20px 12px 30px;
    font-size: 1.02rem;
    color: var(--ink-soft);
    border-bottom: 1px dashed var(--line);
  }
  .nav-group:last-of-type .nav-sublist li:last-child a { border-bottom: 1px solid var(--line); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  .section { padding: 56px 0; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }

  .submenu-bar .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 14px;
  }
  .submenu-bar a { flex-shrink: 0; }

  .badge-header { font-size: 0.98rem; padding: 10px 20px; }
  .detail-accordion summary { padding: 16px 18px; font-size: 1rem; }
  .detail-accordion summary::after { font-size: 0.72rem; margin-left: 10px; }
  .detail-accordion .detail-body { padding: 0 18px 24px; }
  .warn-box, .success-box, .info-callout { padding: 14px 16px; }
  .compare-table th, .compare-table td { padding: 12px 12px; font-size: 0.88rem; }
  .container { padding: 0 18px; }
  .nav-bar { padding: 14px 0; }
  .btn { padding: 11px 20px; font-size: 0.9rem; }
}