/* Get Me Buyers — shared institutional base stylesheet */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-blue: #eef3f8;
  --border: #e4e8ee;
  --border-strong: #c9d2dd;
  --ink: #1a2530;
  --ink-2: #425064;
  --ink-3: #5f6c7d;
  --navy: #2C3E50;
  --blue: #1f6f9e;
  --blue-bright: #2980B9;
  --blue-soft: #e8f1f7;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(26,37,48,0.06), 0 1px 3px rgba(26,37,48,0.08);
  --shadow-md: 0 2px 8px rgba(26,37,48,0.08), 0 4px 16px rgba(26,37,48,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased; font-variant-numeric: tabular-nums; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--blue-soft); }
img { max-width: 100%; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 12px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo svg { width: 30px; height: 30px; display: block; }
.nav-wl { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); line-height: 1; white-space: nowrap; }
.nav-wl em { font-style: normal; color: var(--blue); }
.nav-tag { font-size: 11px; color: var(--ink-3); font-weight: 500; border-left: 1px solid var(--border-strong); padding-left: 12px; margin-left: 2px; white-space: nowrap; }
@media (max-width: 760px) { .nav-tag { display: none; } }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.nav-link:hover { color: var(--navy); text-decoration: none; }
.nav-cta { display: inline-block; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: var(--radius-sm); transition: background .2s; }
.nav-cta:hover { background: #1b2836; text-decoration: none; }
@media (max-width: 700px) { .nav-link { display: none; } }

/* LAYOUT */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
.section.blue { background: var(--bg-blue); }
.sec-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; color: var(--navy); line-height: 1.15; }
h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 760px; }
.sub { color: var(--ink-2); font-size: 17px; max-width: 640px; margin-top: 16px; }
.lead { font-size: 19px; color: var(--ink-2); max-width: 720px; line-height: 1.6; }

/* PAGE HERO (interior pages) */
.page-hero { padding: 150px 0 72px; background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(31,111,158,0.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(31,111,158,0.045) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 4.8vw, 54px); max-width: 820px; }
.page-hero h1 .accent { color: var(--blue); }
.page-hero .lead { margin-top: 20px; }

/* BUTTONS */
.btn { display: inline-block; font-family: var(--font); font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: var(--radius-sm); transition: all .2s; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #1b2836; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1b6190; text-decoration: none; }
.cta-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .2s, box-shadow .2s; }
.card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); }
.card .ic { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-blue); border-radius: 8px; margin-bottom: 16px; color: var(--blue); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 14px; line-height: 1.6; }

/* DOSSIER */
.dossier { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-top: 24px; box-shadow: var(--shadow-sm); }
.dossier-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.dossier-id { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 0.02em; }
.dossier-tag { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.d-row { display: grid; grid-template-columns: 150px 1fr; gap: 8px 26px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.d-row:last-of-type { border-bottom: none; }
.d-k { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); padding-top: 2px; }
.d-v { font-size: 15px; color: var(--ink); }
.d-ev { display: block; color: var(--blue); font-size: 14px; font-weight: 500; margin: 4px 0; }
.d-ev::before { content: '→ '; }
.d-stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 20px; }
.d-stat { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.d-stat b { color: var(--navy); font-weight: 700; }
.rec-action { background: var(--bg-blue); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 14px; }
.rec-k { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.rec-v { font-size: 14px; color: var(--ink); }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.price:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); }
.price.featured { border-color: var(--navy); box-shadow: 0 0 0 1px var(--navy), var(--shadow-md); }
.price-name { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.price-amt { font-size: 38px; font-weight: 700; color: var(--navy); margin: 12px 0 6px; letter-spacing: -0.02em; }
.price-amt span { font-size: 14px; color: var(--ink-3); font-weight: 500; }
.price-desc { color: var(--ink-2); font-size: 14px; flex-grow: 1; }
.price ul { list-style: none; margin: 16px 0 22px; }
.price li { color: var(--ink-2); font-size: 13px; padding: 6px 0 6px 22px; position: relative; }
.price li::before { content: ''; position: absolute; left: 2px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.price .btn { margin-top: auto; text-align: center; }

/* FAQ */
details.faq { border-bottom: 1px solid var(--border); }
details.faq summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 16px; color: var(--navy); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-size: 20px; color: var(--blue); font-weight: 500; transition: transform .2s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { padding-bottom: 22px; max-width: 680px; color: var(--ink-2); }

/* STEP LIST */
.step { padding: 26px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.step:last-child { border-bottom: none; }
.step-n { font-size: 24px; font-weight: 700; color: var(--blue); line-height: 1; }
.step h3 { font-size: 19px; margin-bottom: 5px; }
.step p { color: var(--ink-2); font-size: 15px; max-width: 580px; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 48px 28px; background: #fff; }
.foot-inner { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-logo { display: flex; align-items: center; gap: 12px; }
.foot-logo svg { width: 34px; height: 34px; display: block; flex-shrink: 0; }
.fwl { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); line-height: 1.1; }
.fwl em { font-style: normal; color: var(--blue); }
.ftag { font-size: 12px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }
.ftag::before { content: ''; display: inline-block; width: 16px; height: 2px; background: var(--blue); margin-right: 8px; vertical-align: middle; }
footer p { color: var(--ink-3); font-size: 13px; max-width: 560px; margin-top: 10px; }
.foot-links { display: flex; gap: 20px; font-size: 13px; font-weight: 500; flex-wrap: wrap; }
.foot-links a { color: var(--ink-2); min-height: 40px; display: inline-flex; align-items: center; }
.foot-links a:hover { color: var(--blue); text-decoration: none; }

/* ACCESSIBILITY */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; padding: 12px 20px; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(31,111,158,0.4); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
