@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #F0F2F5;
  --color-teal: #4A6C6F;
  --color-gold: #B28F5B;
  --color-slate: #7A8E9B;
  --color-white: #FFFFFF;
  --color-dark: #1E2A2C;
  --color-dark-mid: #2E3F42;
  --color-border: #D4D9DF;
  --color-bg-card: #FAFBFC;
  --color-bg-section: #E8ECEF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', Arial, sans-serif;
  --max-width: 1440px;
  --container-width: 88%;
  --radius: 4px;
  --shadow-card: 0 2px 12px rgba(30,42,44,0.08), 0 1px 4px rgba(30,42,44,0.04);
  --shadow-lift: 0 6px 24px rgba(30,42,44,0.13), 0 2px 8px rgba(30,42,44,0.07);
  --transition: 0.28s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold);
}

ul {
  list-style: none;
}

.container {
  width: var(--container-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-slate); }

p { margin-bottom: 1rem; color: var(--color-dark-mid); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.text-teal { color: var(--color-teal); }
.text-gold { color: var(--color-gold); }
.text-slate { color: var(--color-slate); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--color-gold);
  padding-left: 0.6rem;
}

.divider-line {
  width: 56px;
  height: 2px;
  background: var(--color-teal);
  margin: 1.2rem 0 1.6rem;
}

.divider-line.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn-primary:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-lift);
}

.btn-outline {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn-outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   HEADER / NAV
===================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(240,242,245,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(30,42,44,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.logo span { color: var(--color-teal); }

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark-mid);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

/* =====================
   HERO
===================== */
.hero-section {
  padding-top: 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,42,44,0.88) 0%, rgba(74,108,111,0.55) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content .section-label {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: rgba(240,242,245,0.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.hero-note {
  font-size: 0.75rem;
  color: rgba(240,242,245,0.55);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* =====================
   SECTIONS GENERAL
===================== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--color-bg-section);
}

.section-dark {
  background: var(--color-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: rgba(240,242,245,0.9);
}

.section-header {
  margin-bottom: 3rem;
}

/* =====================
   LIBRARY GRID (index cards)
===================== */
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lib-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-teal);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.lib-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.lib-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lib-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
}

.lib-card h3 {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.lib-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
  flex-grow: 1;
  margin-bottom: 0;
}

.lib-card .btn {
  align-self: flex-start;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

/* =====================
   TWO-COLUMN
===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.two-col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.two-col-img:hover img { transform: scale(1.03); }

.two-col-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,108,111,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.two-col-text h2 { margin-bottom: 0.8rem; }
.two-col-text p { font-size: 1rem; }

.info-list {
  margin: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--color-dark-mid);
}

.info-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* =====================
   CONTENT ACCORDION / FAQ
===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-teal); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-teal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.4rem 0;
  font-size: 0.95rem;
  color: var(--color-dark-mid);
  line-height: 1.7;
}

/* =====================
   COMPARISON TABLE
===================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 1rem 1.4rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-table th:first-child { background: var(--color-dark); }

.compare-table td {
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark-mid);
  vertical-align: top;
}

.compare-table tr:nth-child(even) td { background: var(--color-bg-section); }
.compare-table td:first-child { font-weight: 600; color: var(--color-dark); }

/* =====================
   QUOTE / HIGHLIGHT
===================== */
.quote-block {
  border-left: 4px solid var(--color-gold);
  padding: 1.4rem 2rem;
  background: var(--color-bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* =====================
   READERS SECTION
===================== */
.readers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reader-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}

.reader-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-teal);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.reader-card p {
  font-size: 0.93rem;
  color: var(--color-dark-mid);
  margin-bottom: 1rem;
}

.reader-card-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================
   TOOL / PRODUCT BLOCK
===================== */
.tool-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tool-block-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
}

.tool-block-img {
  position: relative;
  overflow: hidden;
}

.tool-block-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tool-block-content {
  padding: 3rem;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.ingredient-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-border);
}

.ingredient-item:last-child { border-bottom: none; }

.ingredient-name {
  font-weight: 600;
  color: var(--color-teal);
  font-size: 0.9rem;
  min-width: 110px;
}

.ingredient-desc {
  font-size: 0.88rem;
  color: var(--color-dark-mid);
}

/* =====================
   HERO PHOTO SECTION
===================== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img { transform: scale(1.06); }

/* =====================
   BANNER / DISCLAIMER
===================== */
.edu-banner {
  background: var(--color-dark);
  padding: 1.2rem 0;
  text-align: center;
}

.edu-banner p {
  color: rgba(240,242,245,0.65);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.edu-banner p span {
  color: var(--color-gold);
}

/* =====================
   DISCLAIMER BOX
===================== */
.disclaimer-box {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-slate);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  margin-top: 3rem;
}

.disclaimer-box h4 {
  color: var(--color-slate);
  margin-bottom: 0.7rem;
}

.disclaimer-box p,
.disclaimer-box ul li {
  font-size: 0.85rem;
  color: var(--color-slate);
}

/* =====================
   FORM
===================== */
.form-section {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 640px;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(74,108,111,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-disclaimer {
  background: var(--color-bg-section);
  border-left: 3px solid var(--color-slate);
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--color-slate);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.2rem;
  line-height: 1.5;
}

/* =====================
   CHAT WIDGET
===================== */
#chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  background: var(--color-teal);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: background var(--transition), transform var(--transition);
}

.chat-toggle:hover {
  background: var(--color-dark);
  transform: scale(1.05);
}

.chat-toggle svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
}

.chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  display: none;
}

.chat-panel.open { display: block; }

.chat-header {
  background: var(--color-dark);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.chat-header-info h5 {
  font-size: 0.85rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
}

.chat-header-info p {
  font-size: 0.72rem;
  color: var(--color-gold);
  margin: 0;
}

.chat-messages {
  padding: 1rem;
  height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--color-bg);
}

.chat-msg {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px 8px 8px 2px;
  padding: 0.65rem 0.9rem;
  font-size: 0.83rem;
  color: var(--color-dark-mid);
  max-width: 90%;
  line-height: 1.5;
}

.chat-quick-btns {
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.chat-quick-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: var(--color-teal);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition);
}

.chat-quick-btn:hover {
  background: var(--color-bg-section);
  border-color: var(--color-teal);
}

/* =====================
   COOKIE BANNER
===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: var(--color-dark);
  border-top: 3px solid var(--color-teal);
  padding: 1.2rem 0;
  display: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(240,242,245,0.8);
  flex: 1;
  min-width: 260px;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept {
  background: var(--color-teal);
  color: white;
}

.cookie-btn-accept:hover { background: var(--color-gold); }

.cookie-btn-reject {
  background: transparent;
  color: rgba(240,242,245,0.6);
  border: 1px solid rgba(240,242,245,0.2);
}

.cookie-btn-reject:hover { color: rgba(240,242,245,0.9); }

.cookie-btn-more {
  background: transparent;
  color: var(--color-gold);
  text-decoration: underline;
  padding: 0.55rem 0.5rem;
}

/* =====================
   FOOTER
===================== */
#site-footer {
  background: var(--color-dark);
  color: rgba(240,242,245,0.75);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(240,242,245,0.1);
}

.footer-brand .logo {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-brand p {
  font-size: 0.84rem;
  color: rgba(240,242,245,0.55);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.footer-brand .edu-msg {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  border: 1px solid rgba(178,143,91,0.3);
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  font-size: 0.84rem;
  color: rgba(240,242,245,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--color-gold); }

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col address span,
.footer-col address a {
  font-size: 0.84rem;
  color: rgba(240,242,245,0.55);
}

.footer-col address a:hover { color: var(--color-gold); }

.footer-hours {
  font-size: 0.8rem;
  color: rgba(240,242,245,0.4);
  margin-top: 0.6rem;
  line-height: 1.5;
}

.footer-disclaimer {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(240,242,245,0.08);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(240,242,245,0.38);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(240,242,245,0.35);
  margin-bottom: 0;
}

.footer-policies {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: 0.75rem;
  color: rgba(240,242,245,0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-policies a:hover { color: var(--color-gold); }

/* =====================
   ABOUT PAGE
===================== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-teal);
  border: 2px solid var(--color-bg-card);
  box-shadow: 0 0 0 2px var(--color-teal);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.timeline-item p { font-size: 0.92rem; }

/* =====================
   POLICY PAGES
===================== */
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.policy-wrap h1 { margin-bottom: 0.5rem; }
.policy-wrap .policy-date {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-bottom: 2.5rem;
  display: block;
}

.policy-wrap h2 {
  font-size: 1.2rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}

.policy-wrap p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.policy-wrap ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-wrap ul li {
  list-style: disc;
  font-size: 0.93rem;
  color: var(--color-dark-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* =====================
   THANK YOU PAGE
===================== */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--color-bg-section);
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thankyou-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.8;
}

/* =====================
   PAGE HEADER (inner pages)
===================== */
.page-header {
  padding: 120px 0 60px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.page-header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,42,44,0.92) 0%, rgba(74,108,111,0.5) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 { color: var(--color-white); }
.page-header p {
  color: rgba(240,242,245,0.7);
  font-size: 1.05rem;
  max-width: 560px;
}

/* =====================
   STAT BLOCKS
===================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
}

.stat-box h3 {
  font-size: 2.2rem;
  color: var(--color-teal);
  margin-bottom: 0.4rem;
}

.stat-box p { font-size: 0.84rem; color: var(--color-slate); margin-bottom: 0; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .library-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .tool-block-inner { grid-template-columns: 1fr; }
  .tool-block-img img { height: 260px; }
  .readers-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(30,42,44,0.1);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
  }
  .main-nav.open ul li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-toggle { display: flex; }
  .library-grid { grid-template-columns: 1fr; }
  .readers-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-section { min-height: 80vh; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.8rem; }
  .form-section { padding: 1.8rem; }
}

@media (max-width: 480px) {
  .two-col-img img { height: 280px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
