@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1A2E47;
  --accent-gold: #B7900D;
  --accent-teal: #0E7979;
  --neutral: #E0E0E0;
  --white: #FFFFFF;
  --text-dark: #1A2E47;
  --text-mid: #3a4f66;
  --text-light: #6b7f96;
  --bg-light: #F5F7FA;
  --bg-section: #f0f3f7;
  --border-subtle: #d0d9e4;
  --shadow-sm: 0 2px 8px rgba(26,46,71,0.07);
  --shadow-md: 0 6px 24px rgba(26,46,71,0.12);
  --shadow-lg: 0 16px 48px rgba(26,46,71,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }

p { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.75; color: var(--text-mid); }

a { color: var(--accent-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }

img { max-width: 100%; height: auto; display: block; }

.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 0.75rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-top: 1rem;
}

/* ─── HEADER ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,46,71,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(183,144,13,0.18);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,46,71,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-logo span {
  color: var(--accent-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent-gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--primary);
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(183,144,13,0.18);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--accent-gold); }

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,71,0.92) 0%, rgba(14,121,121,0.55) 60%, rgba(26,46,71,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2.5rem;
  margin-left: 8vw;
}

.hero-content .section-label {
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
}

.hero-content h1 {
  color: var(--white);
  margin: 1rem 0 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.hero-content p {
  color: rgba(255,255,255,0.84);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-disclaimer {
  display: inline-block;
  background: rgba(183,144,13,0.18);
  border: 1px solid rgba(183,144,13,0.4);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── CARDS GRID ─── */
.cards-section {
  background: var(--bg-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  position: relative;
}

.card-icon-eye {
  width: 48px;
  height: 30px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 2px solid var(--accent-teal);
  position: relative;
  top: 9px;
}

.card-icon-eye::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.card-icon-light {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent-gold);
  position: relative;
  top: 10px;
  left: 10px;
}

.card-icon-light::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--accent-gold);
  box-shadow: 10px 5px 0 var(--accent-gold), -10px 5px 0 var(--accent-gold), 7px 8px 0 var(--accent-gold), -7px 8px 0 var(--accent-gold);
}

.card-icon-blink {
  width: 36px;
  height: 20px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 2px solid var(--primary);
  position: relative;
  top: 14px;
  left: 6px;
  overflow: hidden;
}

.card-icon-blink::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--neutral);
  border-top: 2px solid var(--primary);
}

.card-icon-distance {
  width: 44px;
  height: 22px;
  border: 2px solid var(--accent-teal);
  border-radius: 50%;
  position: relative;
  top: 12px;
  left: 2px;
}

.card-icon-distance::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--accent-gold);
}

.card-icon-distance::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--accent-gold);
}

.info-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.cards-section-image {
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  max-height: 420px;
}

.cards-section-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.cards-section-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,71,0.45), transparent);
}

/* ─── TWO-COLUMN LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.two-col-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.two-col-image:hover img {
  transform: scale(1.03);
}

.two-col-image-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  z-index: -1;
}

.two-col-text ul {
  list-style: none;
  margin-top: 1.5rem;
}

.two-col-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.two-col-text ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  margin-top: 0.55rem;
}

.tip-box {
  background: rgba(14,121,121,0.07);
  border-left: 4px solid var(--accent-teal);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.tip-box p {
  font-size: 0.9rem;
  color: var(--accent-teal);
  font-weight: 500;
  margin: 0;
}

/* ─── STEP LIST ─── */
.steps-section {
  background: var(--primary);
}

.steps-section h2,
.steps-section .section-label,
.steps-section p { color: var(--white); }

.steps-section .section-label { border-left-color: var(--accent-gold); }
.steps-section p { color: rgba(255,255,255,0.75); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}

.step-list { list-style: none; }

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(183,144,13,0.25);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.step-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.steps-diagrams {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-diagram {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.step-diagram img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.85;
}

.step-diagram-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14,121,121,0.85);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─── DIGITAL FATIGUE ─── */
.fatigue-section { background: var(--bg-section); }

.fatigue-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.fatigue-image {
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.fatigue-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.pull-quote {
  background: var(--primary);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.55;
}

.key-findings {
  border: 2px solid var(--accent-teal);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 2rem;
}

.key-findings h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1.25rem;
}

.key-findings ul {
  list-style: none;
}

.key-findings ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.key-findings ul li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent-teal);
  border-radius: 50%;
  margin-top: 0.4rem;
}

/* ─── HISTORICAL TIMELINE ─── */
.history-section { background: var(--white); }

.timeline {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--border-subtle);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 3rem);
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 3rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-gold);
  z-index: 1;
}

.timeline-card {
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1.75rem;
  max-width: 380px;
  width: 100%;
}

.timeline-era {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.timeline-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── MYTHS & REALITIES ─── */
.myths-section { background: var(--bg-light); }

.myths-image-block {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 4rem;
  max-height: 320px;
}

.myths-image-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.myths-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26,46,71,0.5));
}

.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.myth-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.myth-card, .reality-card {
  padding: 1.5rem;
  border-radius: 4px;
}

.myth-card {
  background: rgba(26,46,71,0.05);
  border: 1px solid var(--border-subtle);
}

.reality-card {
  background: rgba(14,121,121,0.06);
  border: 1px solid rgba(14,121,121,0.25);
}

.myth-label, .reality-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.myth-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(26,46,71,0.12);
  position: relative;
  flex-shrink: 0;
}

.myth-icon::before,
.myth-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
}

.myth-icon::before {
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.myth-icon::after {
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reality-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(14,121,121,0.15);
  position: relative;
  flex-shrink: 0;
}

.reality-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent-teal);
  border-bottom: 2px solid var(--accent-teal);
  margin-top: -2px;
}

.myth-label { color: var(--primary); }
.reality-label { color: var(--accent-teal); }

.myth-card p, .reality-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); }

.faq-list {
  margin-top: 3rem;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 0;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent-teal);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-teal);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-answer {
  margin-top: 1rem;
  padding-left: 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 700px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--accent-teal);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-gold);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: #9a7a0b;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(183,144,13,0.3);
}

.btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.875rem 2.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ─── DISCLAIMER BLOCK ─── */
.disclaimer-block {
  background: rgba(26,46,71,0.04);
  border: 1px solid var(--border-subtle);
  border-top: 4px solid var(--accent-teal);
  border-radius: 0 0 4px 4px;
  padding: 2rem 2.5rem;
  margin: 4rem 0 0;
}

.disclaimer-block p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
#site-footer {
  background: #0f1d2e;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand .site-logo {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 280px;
}

.footer-edu-msg {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(183,144,13,0.1);
  border-left: 3px solid var(--accent-gold);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--white); }

.footer-hours {
  margin-top: 1.25rem;
}

.footer-hours-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f1d2e;
  border-top: 2px solid var(--accent-gold);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

#cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 680px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-accept { background: var(--accent-gold); color: var(--primary); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
.cookie-more { background: transparent; color: var(--accent-teal); border: 1px solid var(--accent-teal); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(14,121,121,0.12);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero h1 {
  color: var(--white);
  margin: 0.75rem 0 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.blog-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.blog-card-link:hover {
  gap: 0.7rem;
  color: var(--accent-gold);
}

.blog-card-link::after {
  content: '→';
}

/* ─── BLOG ARTICLE ─── */
.article-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-body ul li, .article-body ol li { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text-mid); }

.article-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.article-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-box {
  border-radius: 4px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.sidebar-box.teal-bg {
  background: rgba(14,121,121,0.08);
  border: 1px solid rgba(14,121,121,0.2);
}

.sidebar-box.gold-bg {
  background: rgba(183,144,13,0.07);
  border: 1px solid rgba(183,144,13,0.2);
}

.sidebar-box h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.sidebar-box.gold-bg h3 { color: var(--accent-gold); }

.sidebar-box p, .sidebar-box li {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.sidebar-box ul { list-style: none; }
.sidebar-box ul li { padding: 0.4rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.sidebar-box ul li:last-child { border-bottom: none; }

/* ─── ABOUT ─── */
.about-image-block {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  margin: 3rem 0;
}

.mission-box {
  background: var(--accent-teal);
  padding: 2.5rem;
  border-radius: 4px;
  margin: 3rem 0;
}

.mission-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.mission-box p { color: rgba(255,255,255,0.85); }

.about-quote {
  border-left: 4px solid var(--accent-gold);
  padding: 1rem 2rem;
  background: rgba(183,144,13,0.05);
  border-radius: 0 4px 4px 0;
  margin: 2.5rem 0;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.contact-form-disclaimer {
  background: rgba(14,121,121,0.07);
  border: 1px solid rgba(14,121,121,0.2);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.contact-form-disclaimer p {
  font-size: 0.85rem;
  color: var(--accent-teal);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(14,121,121,0.1);
}

textarea.form-control { min-height: 160px; resize: vertical; }

.btn-submit {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  background: var(--accent-teal);
  box-shadow: 0 8px 24px rgba(14,121,121,0.25);
}

.contact-info-block {
  background: var(--primary);
  color: var(--white);
  padding: 3rem;
  border-radius: 4px;
  height: fit-content;
}

.contact-info-block h3 { color: var(--white); margin-bottom: 2rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14,121,121,0.25);
  position: relative;
}

.icon-pin::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.icon-pin::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  background: var(--accent-teal);
}

.icon-phone::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-teal);
  border-radius: 4px;
}

.icon-email::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 7px;
  width: 22px;
  height: 16px;
  border: 2px solid var(--accent-teal);
  border-radius: 2px;
}

.icon-email::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 7px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 8px solid var(--accent-teal);
}

.contact-info-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}

.contact-info-text a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-text a:hover { color: var(--white); }

.portugal-map-graphic {
  margin-top: 2rem;
  background: rgba(14,121,121,0.1);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.portugal-map-graphic svg {
  max-width: 120px;
  fill: rgba(14,121,121,0.5);
  stroke: var(--accent-teal);
  stroke-width: 1;
}

/* ─── POLICY PAGES ─── */
.policy-content { padding: 80px 0 60px; }
.policy-content h2 { margin: 3rem 0 1rem; font-size: 1.6rem; }
.policy-content h3 { margin: 2rem 0 0.75rem; font-size: 1.2rem; }
.policy-content p { margin-bottom: 1.25rem; }
.policy-content ul, .policy-content ol { padding-left: 1.75rem; margin-bottom: 1.25rem; }
.policy-content ul li, .policy-content ol li { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text-mid); }

.policy-stamp {
  display: inline-block;
  background: rgba(183,144,13,0.1);
  border: 1px solid var(--accent-gold);
  border-radius: 2px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.warning-banner {
  background: rgba(183,144,13,0.12);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.warning-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.warning-icon::before {
  content: '!';
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.warning-banner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.warning-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cookie-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-mid);
}

.cookie-table tr:nth-child(even) td { background: var(--bg-light); }

.glossary-box {
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.glossary-box h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1.25rem;
}

.glossary-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
}

.glossary-term {
  font-weight: 600;
  color: var(--primary);
  min-width: 140px;
  flex-shrink: 0;
}

.glossary-def { color: var(--text-mid); }

/* ─── THANK YOU ─── */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 2rem;
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,121,121,0.07) 0%, transparent 70%);
}

.thankyou-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, var(--primary) 0, var(--primary) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 1px, transparent 1px, transparent 40px);
}

.thankyou-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(14,121,121,0.1);
  border: 2px solid var(--accent-teal);
  margin: 0 auto 2rem;
  position: relative;
}

.thankyou-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 24px;
  height: 14px;
  border-left: 3px solid var(--accent-teal);
  border-bottom: 3px solid var(--accent-teal);
  margin-top: -4px;
}

/* ─── STAT STRIP ─── */
.stat-strip {
  background: var(--primary);
  padding: 3rem 0;
}

.stat-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
  letter-spacing: 0.06em;
}

/* ─── TIMELINE (blog3) ─── */
.routine-timeline {
  position: relative;
  padding: 2rem 0;
}

.routine-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--border-subtle);
}

.routine-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.routine-time {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: 0.02em;
  z-index: 1;
}

.routine-text h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.routine-text p { font-size: 0.875rem; color: var(--text-light); }

/* ─── QUICK TIPS ─── */
.quick-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-tip-card {
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.quick-tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14,121,121,0.12);
  margin: 0 auto 1rem;
  position: relative;
}

.quick-tip-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--accent-teal);
}

.quick-tip-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.quick-tip-card p { font-size: 0.82rem; color: var(--text-light); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 1rem 0;
  background: transparent;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb-list li a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-list li a:hover { color: var(--accent-gold); }
.breadcrumb-list li::after { content: '/'; opacity: 0.4; }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: rgba(255,255,255,0.85); }

/* ─── COMPARISON TABLE ─── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'Lora', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-mid);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td { background: var(--bg-light); }

/* ─── LIGHTING ZONE INFOGRAPHIC ─── */
.lighting-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.lighting-zone {
  background: var(--bg-light);
  border-radius: 4px;
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.lz-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  position: relative;
}

.lz-primary { background: rgba(183,144,13,0.2); border: 2px solid var(--accent-gold); }
.lz-ambient { background: rgba(14,121,121,0.15); border: 2px solid var(--accent-teal); }
.lz-task { background: rgba(26,46,71,0.1); border: 2px solid var(--primary); }

.lz-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

.lz-primary::after { background: var(--accent-gold); }
.lz-ambient::after { background: var(--accent-teal); }
.lz-task::after { background: var(--primary); }

.lighting-zone h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.lighting-zone p { font-size: 0.82rem; color: var(--text-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .fatigue-layout { grid-template-columns: 1fr; }
  .fatigue-image { position: relative; top: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: relative; top: 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .lighting-zones { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }
  .two-col-image img { height: 320px; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 3.5rem;
    justify-content: flex-start;
  }
  .timeline-dot { left: 20px; }
  .timeline-card { max-width: 100%; }
  .myths-grid { grid-template-columns: 1fr; }
  .myth-pair { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-content { margin-left: 0; padding: 0 1.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .lighting-zones { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container-wide, .container, .container-narrow { padding: 0 1.25rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-strip-inner { flex-direction: column; }
  .quick-tips-grid { grid-template-columns: 1fr 1fr; }
}

.policy-intro-box {
  background: var(--bg-section);
  border-left: 4px solid var(--accent-teal);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}
.policy-intro-box p { color: var(--text-dark); font-size: 1.05rem; margin: 0; }

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.policy-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-mid);
  line-height: 1.65;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-teal);
}
.policy-list-prominent li::before { background: var(--accent-gold); }

.policy-version-stamp {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

.terms-glossary {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 6px;
  margin-bottom: 3rem;
}
.terms-glossary h3 { color: var(--neutral); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.glossary-list { margin: 0; padding: 0; }
.glossary-list dt { color: var(--accent-gold); font-weight: 600; font-family: 'Inter', sans-serif; font-size: 0.92rem; margin-top: 0.9rem; }
.glossary-list dd { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-left: 0; margin-top: 0.2rem; line-height: 1.6; }

.terms-quote {
  border-left: 4px solid var(--accent-gold);
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1.65;
  border-radius: 0 4px 4px 0;
}

.cookie-diagram {
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
}
.cookie-diagram-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cd-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.cd-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-user .cd-icon { background: var(--primary); color: var(--white); }
.cd-server .cd-icon { background: var(--accent-teal); color: var(--white); }
.cd-storage .cd-icon { background: var(--accent-gold); color: var(--white); }
.cd-node span { font-size: 0.75rem; color: var(--text-mid); font-family: 'Inter', sans-serif; font-weight: 500; max-width: 90px; line-height: 1.3; }
.cd-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
}
.cd-arrow-line {
  width: 60px;
  height: 2px;
  background: var(--border-subtle);
  position: relative;
}
.cd-arrow-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--border-subtle);
}
.cd-arrow-return .cd-arrow-line::after { border-left-color: var(--accent-teal); background: transparent; }
.cd-arrow-label { font-size: 0.68rem; color: var(--text-light); font-family: 'Inter', sans-serif; text-align: center; max-width: 70px; line-height: 1.25; }
.cookie-diagram-caption { font-size: 0.82rem; color: var(--text-light); text-align: center; margin: 0; line-height: 1.6; }

.cookie-table-wrapper { margin: 2rem 0 2.5rem; overflow-x: auto; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}
.cookie-table caption { text-align: left; font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.75rem; caption-side: top; }
.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.cookie-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.55;
}
.cookie-table tr:nth-child(even) td { background: var(--bg-section); }
.cookie-table code {
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  font-size: 0.85em;
  color: var(--accent-teal);
}

.health-warning-banner {
  background: var(--primary);
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--accent-gold);
}
.hwb-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.hwb-icon { color: var(--accent-gold); flex-shrink: 0; padding-top: 0.15rem; }
.hwb-text strong { display: block; color: var(--white); font-family: 'Lora', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.hwb-text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; line-height: 1.65; }

.hd-emphasis-box {
  background: linear-gradient(135deg, rgba(14,121,121,0.08) 0%, rgba(26,46,71,0.06) 100%);
  border: 1px solid rgba(14,121,121,0.25);
  border-left: 4px solid var(--accent-teal);
  padding: 2rem 2.5rem;
  border-radius: 0 6px 6px 0;
  margin: 2.5rem 0;
}
.hd-emphasis-box h3 { color: var(--accent-teal); margin-bottom: 0.75rem; font-size: 1.15rem; }
.hd-emphasis-box p { color: var(--text-dark); margin: 0; font-size: 0.97rem; }

.timeline-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
  position: relative;
}
.timeline-visual::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}
.tl-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0 0 2rem 0;
  position: relative;
}
.tl-marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border-subtle);
}
.tl-work { background: var(--primary); }
.tl-pause { background: var(--accent-teal); }
.tl-long { background: var(--accent-gold); }
.tl-content { padding-top: 0.4rem; }
.tl-content h3 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.35rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.tl-content p { font-size: 0.9rem; margin: 0; line-height: 1.6; }

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.tip-card {
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.75rem;
}
.tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.tip-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); }
.tip-card p { font-size: 0.88rem; margin: 0; line-height: 1.65; }

@media (max-width: 768px) {
  .tips-grid { grid-template-columns: 1fr; }
  .cookie-diagram-inner { flex-direction: column; }
  .cd-arrow { transform: rotate(90deg); }
  .hwb-inner { flex-direction: column; gap: 1rem; }
  .policy-version-stamp { flex-direction: column; gap: 0.5rem; }
}
