/* =============================================================
   Floppy Recovery Ireland — style.css
   Mobile-first, single file, no framework dependencies
   ============================================================= */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --navy:       #1a2332;
  --navy-dark:  #111820;
  --navy-mid:   #243044;
  --amber:      #c9903a;
  --amber-dark: #b07d30;
  --amber-light:#e8aa55;
  --off-white:  #f7f8fa;
  --white:      #ffffff;
  --text:       #2d3748;
  --text-light: #6b7280;
  --text-xlight:#9ca3af;
  --border:     #e5e7eb;
  --success:    #16a34a;
  --error:      #dc2626;

  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 28px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --max-w: 1160px;
  --section-py: 5rem;
  --container-px: 1.25rem;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { text-wrap: pretty; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-dark); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 2px; }

strong { font-weight: 600; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 56ch; }
.section-header--center p { margin: 0.75rem auto 0; }

/* grids */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo span { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.nav-logo:hover { color: var(--white); text-decoration: none; }

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background-color 0.15s;
  display: block;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; }
.nav-links a.active { color: var(--white); }

.nav-cta {
  display: none;
  background: var(--amber);
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius-md) !important;
  font-size: 0.875rem !important;
  transition: background-color 0.2s, transform 0.1s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; text-decoration: none !important; }
.nav-cta:active { transform: scale(0.96); }

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1),
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2),
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3),
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.nav-mobile {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0.75rem 0; margin: 0; }
.nav-mobile ul li a {
  display: block;
  color: rgba(255,255,255,0.82);
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  transition: background-color 0.15s, color 0.15s;
}
.nav-mobile ul li a:hover { background: rgba(255,255,255,0.06); color: var(--white); text-decoration: none; }
.nav-mobile .nav-mobile-cta {
  margin: 0.5rem 1.25rem 0.75rem;
  display: block;
  background: var(--amber);
  color: var(--navy) !important;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.1s;
  min-height: 44px;
}
.btn:active { transform: scale(0.96); text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--navy); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); text-decoration: none; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); text-decoration: none; }

.btn-lg { font-size: 1.05rem; padding: 0.85rem 2rem; }
.btn-sm { font-size: 0.85rem; padding: 0.5rem 1rem; min-height: 36px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
}
.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.trust-badge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.trust-badge strong { display: block; color: var(--white); font-size: 0.92rem; }
.trust-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

@media (min-width: 840px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}

/* ── Value props (Why Us) ────────────────────────────────────── */
.value-props { display: flex; flex-direction: column; gap: 1.5rem; }
.value-prop {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-left: 3px solid var(--amber);
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
.value-prop-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  padding-top: 0.1rem;
}
.value-prop h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.value-prop p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0; }

@media (min-width: 768px) {
  .value-props { flex-direction: row; }
  .value-prop { flex: 1; flex-direction: column; border-left: none; border-top: 3px solid var(--amber); border-radius: var(--radius-lg); padding: 1.75rem; }
  .value-prop-icon { width: auto; text-align: left; }
}

/* ── Services snapshot ──────────────────────────────────────── */
.disk-type-grid { display: grid; gap: 1.5rem; }
.disk-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.1s;
}
.disk-type-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.disk-type-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.disk-type-card .disk-specs { color: var(--text-light); font-size: 0.875rem; margin-bottom: 1rem; }
.format-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.format-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  letter-spacing: 0.03em;
}

@media (min-width: 640px) {
  .disk-type-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Process steps ──────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}
.step-body h3 { margin-bottom: 0.3rem; font-size: 1rem; }
.step-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

@media (min-width: 900px) {
  .process-steps { flex-direction: row; gap: 0; }
  .process-step {
    flex: 1;
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 0 2rem 0 0;
    margin-right: 2rem;
    gap: 1rem;
  }
  .process-step:last-child { border-right: none; margin-right: 0; padding-right: 0; }
}

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 50ch; margin: 0 auto 2rem; }
.cta-band .btn-primary { font-size: 1.05rem; padding: 0.85rem 2.25rem; }

/* ── Stat counters ───────────────────────────────────────────── */
.stats { display: grid; gap: 1.5rem; text-align: center; }
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.9rem; color: var(--text-light); margin-top: 0.4rem; }

@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }

/* ── Cards (generic) ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

/* ── Pricing Table ───────────────────────────────────────────── */
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.pricing-table th, .pricing-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}
.pricing-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.pricing-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.pricing-table tbody tr:hover td { background: var(--off-white); }
.pricing-table .tier-label { font-weight: 600; color: var(--navy); }
.pricing-table .tier-price { font-weight: 700; color: var(--amber); font-size: 1rem; }
.pricing-table .tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 0.35rem;
}
.badge-recommended { background: #fef3c7; color: #92400e; }

/* ── Calculator ──────────────────────────────────────────────── */
.calculator {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.calculator h2 { margin-bottom: 1.5rem; }

.calc-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .calc-grid { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-field .hint { font-size: 0.78rem; color: var(--text-light); margin-top: -0.2rem; }

input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 44px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,144,58,0.18);
}
input[type="number"] { font-variant-numeric: tabular-nums; }
textarea { resize: vertical; min-height: 120px; }

/* radio group */
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  min-height: 44px;
}
.radio-label input[type="radio"] { width: 18px; height: 18px; min-height: unset; cursor: pointer; accent-color: var(--amber); }

/* checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; min-height: unset; flex-shrink: 0; margin-top: 0.15rem; cursor: pointer; accent-color: var(--amber); }

/* calc result */
.calc-result {
  margin-top: 1.5rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.calc-total-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0.25rem; }
.calc-total-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-breakdown { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; }
.calc-breakdown p { margin-bottom: 0.2rem; }

/* ── Forms (contact / quote) ─────────────────────────────────── */
.form-section { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-section { grid-template-columns: 1fr 1fr; } }
.form-section .field-full { grid-column: 1 / -1; }

.form-error { color: var(--error); font-size: 0.82rem; margin-top: 0.25rem; }
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--success);
  font-weight: 500;
  display: none;
}
.form-success.visible { display: block; }

/* honeypot */
.ohnohoney { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

/* ── FAQ (details/summary) ───────────────────────────────────── */
.faq-group { margin-bottom: 3rem; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group h2 { font-size: 1.3rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border); }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  list-style: none;
  min-height: 44px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--amber);
  line-height: 1;
  transition: transform 0.2s;
  margin-top: 0.1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--amber); }
.faq-body { padding: 0 0 1.25rem; color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }
.faq-body p { margin-bottom: 0.6rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--amber); }

/* ── Formats ─────────────────────────────────────────────────── */
.format-platform { margin-bottom: 2.5rem; }
.format-platform h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-xlight);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.format-list { display: flex; flex-direction: column; gap: 0.6rem; }
.format-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.format-ext {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--amber);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-top: 0.1rem;
}
.format-info h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.format-info p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0; }

.format-decision { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.format-decision li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.decision-arrow { font-size: 1.2rem; flex-shrink: 0; }
.decision-text strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.25rem; }
.decision-text span { font-size: 0.85rem; color: var(--text-light); }

/* conversion upsell */
.conversion-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.conversion-card h3 { color: var(--white); margin-bottom: 0.6rem; }
.conversion-card p { color: rgba(255,255,255,0.78); margin-bottom: 1.25rem; }
.conversion-formats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.conversion-formats span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  font-size: 0.82rem;
  color: var(--white);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.conversion-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.25rem;
}
.conversion-price small { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.6); }

/* ── Contact layout ──────────────────────────────────────────── */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 840px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block h3 { font-size: 0.9rem; color: var(--text-xlight); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.6rem; }
.contact-block p { margin-bottom: 0.4rem; }
.contact-block a { color: var(--amber); }

.turnaround-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.turnaround-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  gap: 1rem;
}
.turnaround-item .tier { font-weight: 600; }
.turnaround-item .time { color: var(--text-light); font-size: 0.85rem; }

/* ── Vintage platform grid ───────────────────────────────────── */
.platform-grid { display: grid; gap: 1rem; }
@media (min-width: 480px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .platform-grid { grid-template-columns: repeat(3, 1fr); } }

.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.platform-name { font-weight: 700; color: var(--navy); font-size: 0.97rem; margin-bottom: 0.2rem; }
.platform-detail { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0; }

/* ── Safety badges ───────────────────────────────────────────── */
.safety-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.safety-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.4rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
}
.safety-badge svg { width: 14px; height: 14px; color: var(--success); }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 56ch; margin-bottom: 0; }
.page-hero .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumb a:hover { color: var(--white); text-decoration: none; }

/* ── Prose (privacy/about) ───────────────────────────────────── */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.35rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose ul { margin-bottom: 1rem; }
.prose a { color: var(--amber); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; line-height: 1.6; }
.footer-brand .footer-logo { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; display: block; }

.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ── Calculator (pricing page) ──────────────────────────────── */
.calc-wrap { display: grid; gap: 2rem; }
@media (min-width: 840px) { .calc-wrap { grid-template-columns: 1fr 1fr; align-items: start; } }

.calc-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label { font-size: 0.875rem; font-weight: 600; color: var(--text); }

.calc-fieldset {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}
.calc-fieldset legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 0.4rem;
}
.calc-radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 44px;
}
.calc-radio input[type="radio"] {
  width: 18px; height: 18px;
  min-height: unset;
  cursor: pointer;
  accent-color: var(--amber);
}
.calc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.5;
  min-height: 44px;
  padding-top: 0.1rem;
}
.calc-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  min-height: unset;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--amber);
  margin-top: 0.2rem;
}

.calc-result {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
}
.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.calc-line {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.calc-total span:first-child {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.calc-total-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.calc-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.btn-block { width: 100%; display: flex; justify-content: center; }

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.price-warning {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ── Container narrow ────────────────────────────────────────── */
.container--narrow { max-width: 800px; }

/* ── FAQ (category headings) ─────────────────────────────────── */
.faq-category-heading {
  font-size: 1.2rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
}
.faq-category-heading:first-of-type { margin-top: 0; }

.faq-list { margin-bottom: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  list-style: none;
  min-height: 44px;
  transition: color 0.15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--amber);
  line-height: 1;
  transition: transform 0.2s;
  margin-top: 0.1rem;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--amber); }

.faq-a {
  padding: 0 0 1.25rem;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-a p { margin-bottom: 0.6rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--amber); }

/* ── Services page ───────────────────────────────────────────── */
.media-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }

.media-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.media-card h3 { margin-bottom: 0.4rem; }
.media-card .media-spec { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.75rem; }

.process-detail {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-detail li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-detail li:last-child { border-bottom: none; }
.step-label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: rgba(201,144,58,0.1);
  border: 1px solid rgba(201,144,58,0.25);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  height: fit-content;
  margin-top: 0.25rem;
  white-space: nowrap;
}
.step-detail-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-detail-body p { color: var(--text-light); font-size: 0.91rem; margin-bottom: 0; }

.safety-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }

.safety-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.safety-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.safety-item p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* ── Formats page ────────────────────────────────────────────── */
.format-cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .format-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .format-cards { grid-template-columns: repeat(3, 1fr); } }

.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.format-card .format-ext {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--amber);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.format-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.format-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }
.format-card--archival { border-color: rgba(201,144,58,0.3); background: rgba(201,144,58,0.04); }

.vintage-format-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .vintage-format-list { grid-template-columns: repeat(2, 1fr); } }

.vintage-group h3 { font-size: 1rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--amber); }
.vintage-group dl { display: flex; flex-direction: column; gap: 0.5rem; }

.format-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.format-row:last-child { border-bottom: none; }
.format-ext-sm {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-top: 0.1rem;
}
.format-row dd { font-size: 0.87rem; color: var(--text-light); margin: 0; }

.conversion-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .conversion-grid { grid-template-columns: repeat(2, 1fr); } }

.conversion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.conversion-item .format-ext {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--amber);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.conversion-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.conversion-item p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

.format-guide {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.format-guide li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.format-guide li:last-child { border-bottom: none; }
.format-guide strong { display: block; font-size: 0.97rem; color: var(--navy); margin-bottom: 0.35rem; }
.format-guide p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 840px) { .contact-layout { grid-template-columns: 1.4fr 1fr; align-items: start; } }

.contact-form-col h2 { margin-bottom: 1.5rem; }
.contact-info-col h2 { margin-bottom: 1.25rem; }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 580px) { .form-row--2 { flex-direction: row; } .form-row--2 .form-field { flex: 1; } }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-field:last-of-type { margin-bottom: 0; }
.form-field label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-field label span { color: var(--amber); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  min-height: unset;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--amber);
  margin-top: 0.15rem;
}
.form-checkbox a { color: var(--amber); }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.contact-details dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-xlight); margin-bottom: 0.2rem; }
.contact-details dd { margin: 0; font-size: 0.92rem; line-height: 1.55; }
.contact-details dd a { color: var(--amber); }

.turnaround-info { margin-bottom: 1.75rem; }
.turnaround-info h3 { font-size: 0.95rem; margin-bottom: 0.85rem; }
.turnaround-info ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.turnaround-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.9rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  gap: 1rem;
}
.turnaround-info li strong { color: var(--navy); }
.turnaround-info li span { color: var(--text-light); font-size: 0.83rem; }

.shipping-tip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.shipping-tip h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.shipping-tip p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.85rem; }

/* ── Services - platform items ───────────────────────────────── */
.platform-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.platform-item h3 { font-size: 0.97rem; margin-bottom: 0.35rem; }
.platform-item p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }

/* ── nav mobile is-open (JS hook) ────────────────────────────── */
.nav-mobile.is-open { display: block; }

/* ── Form status messages ────────────────────────────────────── */
.form-status {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-status--ok {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Misc utilities ──────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }

/* visually hidden (a11y) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* skip nav */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-nav:focus { top: 0; }

/* notice/alert box */
.notice {
  background: #fef3c7;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #78350f;
}

/* inline code (format names in text) */
code {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
