/* ============================================================
   PARITYRX — style.css
   All visual design lives here. Touch nothing else for styling.
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --green:        #d4a22a;
  --green-light:  #f0c04a;
  --green-dim:    #a07818;
  --gold:         #d4a22a;
  --gold-light:   #f0c04a;
  --gold-dim:     #a07818;
  --bg:           #0c0e0d;
  --bg-2:         #141715;
  --bg-3:         #1c1f1d;
  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(212, 162, 42, 0.35);
  --text:         #eeecea;
  --muted:        #7a8480;
  --red-soft:     #d97070;
  --white:        #ffffff;

  /* Typography */
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'IBM Plex Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --pad-page:     48px;
  --pad-section:  88px;
  --max-width:    1100px;

  /* Radius */
  --radius:       6px;
  --radius-sm:    3px;
  --radius-pill:  20px;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED LAYOUT ── */
.page-section {
  padding: var(--pad-section) var(--pad-page);
  max-width: var(--max-width);
  margin: 0 auto;
}

.full-section {
  padding: var(--pad-section) var(--pad-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.full-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 var(--pad-page);
}

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
  color: var(--text);
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 52px;
}

/* ── FADE-IN ANIMATION ── */
.fi {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fi.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad-page);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 14, 13, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.2px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dim);
  color: var(--white);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad-page) 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212, 162, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26, 158, 114, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.55s ease 0.1s forwards;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.55s ease 0.2s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.55s ease 0.3s forwards;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.55s ease 0.4s forwards;
}

.hero-stat {
  border-left: 2px solid var(--gold-dim);
  padding-left: 18px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--text);
}

.hero-stat-num.hi { color: var(--red-soft); }
.hero-stat-num.lo { color: var(--gold-light); }

.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 0.3px;
  font-weight: 400;
}

/* Hero CTA */
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeUp 0.55s ease 0.5s forwards;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── SKIN STRIP ── */
.skin-strip {
  background: var(--gold-dim);
  padding: 16px var(--pad-page);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1px;
}

.skin-strip strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 600;
}

/* ── LAW ALERT ── */
.law-alert-wrap {
  max-width: var(--max-width);
  margin: 64px auto;
  padding: 0 var(--pad-page);
}

.law-box {
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  background: rgba(212, 162, 42, 0.05);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.law-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 162, 42, 0.12);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.law-box h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.law-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
  font-weight: 300;
}

.law-box p + p {
  margin-top: 10px;
}

/* ── PROBLEM CARDS ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.prob-card {
  background: var(--bg-2);
  padding: 30px 26px;
  transition: background 0.2s;
}

.prob-card:hover {
  background: var(--bg-3);
}

.prob-num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--bg-3);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.prob-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.prob-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.svc-card:hover {
  border-color: var(--gold-dim);
}

.svc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.badge-main {
  background: rgba(212, 162, 42, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 162, 42, 0.25);
}

.badge-also {
  background: rgba(26, 158, 114, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(26, 158, 114, 0.2);
}

.svc-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── DRUG TABLE ── */
.table-bg {
  background: var(--bg-2);
}

.drug-table {
  width: 100%;
  border-collapse: collapse;
}

.drug-table thead tr {
  border-bottom: 1px solid var(--border);
}

.drug-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 18px;
  text-align: left;
}

.drug-table td {
  padding: 16px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.drug-table tr:last-child td {
  border-bottom: none;
}

.drug-table tbody tr:hover td {
  background: var(--bg-3);
}

.price-hi {
  color: var(--red-soft);
  font-weight: 500;
}

.price-lo {
  color: var(--gold-light);
  font-weight: 500;
}

.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.pill-green {
  background: rgba(26, 158, 114, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(26, 158, 114, 0.2);
}

.pill-muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid var(--border);
}

.table-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  font-weight: 300;
  font-style: italic;
}

/* ── PROCESS CARDS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.proc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 26px 22px;
  transition: border-color 0.2s;
  position: relative;
}

.proc-card:hover {
  border-color: var(--gold-dim);
}

.proc-card:not(:last-child)::after {
  content: '>';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 16px;
  z-index: 1;
}

.proc-num {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--bg-3);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 14px;
}

.proc-free {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.proc-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.proc-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── SKIN FULL ── */
.skin-full {
  text-align: center;
  background: var(--bg-2);
}

.skin-full h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.skin-full p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-title {
  margin-bottom: 16px;
}

.contact-left .section-sub {
  margin-bottom: 30px;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.c-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.c-detail span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.c-detail a {
  font-size: 14px;
  color: var(--gold-light);
  text-decoration: none;
}

.c-detail a:hover {
  text-decoration: underline;
}

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

.form-group select option {
  background: var(--bg-2);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  letter-spacing: 0.3px;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  padding: 28px var(--pad-page);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--muted);
}

.foot-logo span {
  color: var(--gold);
}

footer p {
  font-size: 11.5px;
  color: var(--muted);
  max-width: 500px;
  text-align: right;
  line-height: 1.55;
  font-weight: 300;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  :root {
    --pad-page: 24px;
    --pad-section: 64px;
  }

  .hero { padding: 100px var(--pad-page) 64px; }
  .law-alert-wrap { margin: 48px auto; }
  .skin-strip { font-size: 13px; }

  .problem-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr 1fr; }
  .proc-card::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row     { grid-template-columns: 1fr; }

  .drug-table { font-size: 12px; }
  .drug-table th,
  .drug-table td { padding: 10px 10px; }

  footer { flex-direction: column; align-items: flex-start; }
  footer p { text-align: left; }
}
