/* ============================================================
   Hoplon Pest Control — Privacy Policy Styles
   Brand: Sky Blue #008CF0 · Navy #00143C · Orange #F05000
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --color-navy:        #00143C;
  --color-navy-mid:    #002850;
  --color-blue:        #008CF0;
  --color-blue-light:  #0078DC;
  --color-orange:      #F05000;
  --color-bg:          #FFFFFF;
  --color-bg-alt:      #F2F7FD;
  --color-border:      #D0E4F7;
  --color-text:        #1A2A3A;
  --color-muted:       #5A7080;
  --color-ghost:       rgba(0, 140, 240, 0.07);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 6px;
  --max-width: 780px;
}

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

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

/* ── Page wrapper ── */
.privacy-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── Top accent bar ── */
.privacy-wrapper::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-blue) 65%, var(--color-orange) 100%);
  margin-bottom: 56px;
  border-radius: 0 0 3px 3px;
}

/* ── Document header ── */
.privacy-header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 56px;
}

.privacy-header .company-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 12px;
}

.privacy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.privacy-header .last-updated {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 400;
}

.privacy-header .last-updated strong {
  color: var(--color-text);
  font-weight: 500;
}

/* ── Intro paragraph ── */
.privacy-intro {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.privacy-intro + p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 56px;
  padding: 14px 20px;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Sections ── */
.privacy-section {
  position: relative;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

/* Ghost section number watermark */
.privacy-section::before {
  content: attr(data-section);
  position: absolute;
  top: -14px;
  right: 0;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 700;
  color: var(--color-ghost);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.privacy-section h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.privacy-section h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.privacy-section p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 14px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

/* ── Lists ── */
.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 16px;
}

.privacy-section ul.list-single {
  grid-template-columns: 1fr;
}

.privacy-section ul li {
  font-size: 14.5px;
  color: var(--color-text);
  padding: 6px 10px 6px 22px;
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  line-height: 1.5;
}

.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
  opacity: 0.7;
}

/* ── Contact section ── */
.privacy-contact-box {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-top: 20px;
}

.privacy-contact-box .contact-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 6px;
}

.privacy-contact-box .contact-company {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.privacy-contact-box .contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.privacy-contact-box .contact-row:last-child {
  margin-bottom: 0;
}

.privacy-contact-box .contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 140, 240, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.privacy-contact-box a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 140, 240, 0.45);
  transition: border-color 0.2s;
}

.privacy-contact-box a:hover {
  border-color: var(--color-blue);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .privacy-wrapper { padding: 0 16px 60px; }
  .privacy-section ul { grid-template-columns: 1fr; }
  .privacy-contact-box { padding: 28px 24px; }
  .privacy-section::before { font-size: 64px; top: -10px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}