@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #F5F5F5;
  --bg-dark: #1A1A1A;
  --bg-medium: #2C2C2C;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-light: #888888;
  --text-white: #F5F5F5;
  --accent-green: #4CAF50;
  --accent-blue: #2196F3;
  --accent-orange: #FF9800;
  --border-light: #E0E0E0;
  --border-medium: #CCCCCC;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --max-width: 1440px;
  --container: 1200px;
  --radius: 4px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-green);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--text-white);
}

.section--dark p {
  color: #C0C0C0;
}

.section--grey {
  background-color: #EBEBEB;
}

.section--deep {
  background-color: #222222;
  color: var(--text-white);
}

.section--deep h1,
.section--deep h2,
.section--deep h3 { color: var(--text-white); }
.section--deep p { color: #BBBBBB; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.section-label--green { color: var(--accent-green); }
.section-label--orange { color: var(--accent-orange); }
.section-label--white { color: rgba(255,255,255,0.6); }

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 48px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent-green);
  margin: 16px 0 32px;
}

.divider--blue { background: var(--accent-blue); }
.divider--orange { background: var(--accent-orange); }
.divider--center { margin-left: auto; margin-right: auto; }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5F5F5;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo span {
  color: var(--accent-green);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.75);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--accent-green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.header-nav a:hover {
  color: #F5F5F5;
  background: rgba(255,255,255,0.06);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-nav a.active {
  color: var(--accent-green);
}

.header-nav a.active::after {
  transform: scaleX(1);
}

.header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.header-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F5F5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.99);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245,245,245,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent-green); }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--bg-dark);
  color: rgba(245,245,245,0.7);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #F5F5F5;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--accent-green); }

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245,245,245,0.5);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-compliance {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-orange);
  border: 1px solid rgba(255,152,0,0.4);
  padding: 5px 10px;
  border-radius: 2px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245,245,245,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent-green); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}

.footer-contact-value {
  font-size: 0.88rem;
  color: rgba(245,245,245,0.75);
}

.footer-hours {
  font-size: 0.82rem;
  color: rgba(245,245,245,0.55);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,245,245,0.35);
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: 0.78rem;
  color: rgba(245,245,245,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policies a:hover { color: rgba(245,245,245,0.8); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1A1A1A;
  border-top: 2px solid var(--accent-green);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.35);
}

#cookie-banner.hidden { display: none; }

.cookie-text {
  font-size: 0.85rem;
  color: rgba(245,245,245,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-cookie {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-cookie--accept {
  background: var(--accent-green);
  color: #fff;
}

.btn-cookie--accept:hover { background: #43A047; }

.btn-cookie--refuse {
  background: rgba(255,255,255,0.1);
  color: rgba(245,245,245,0.75);
}

.btn-cookie--refuse:hover { background: rgba(255,255,255,0.18); }

.btn-cookie--info {
  background: transparent;
  color: var(--accent-blue);
  text-decoration: underline;
  padding: 9px 10px;
}

.btn-cookie--info:hover { color: #64B5F6; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--accent-green);
  color: #fff;
}

.btn--primary:hover {
  background: #43A047;
  color: #fff;
  box-shadow: 0 4px 16px rgba(76,175,80,0.35);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}

.btn--outline:hover {
  background: var(--text-primary);
  color: #F5F5F5;
}

.btn--outline-white {
  background: transparent;
  color: #F5F5F5;
  border: 1.5px solid rgba(245,245,245,0.6);
}

.btn--outline-white:hover {
  background: rgba(245,245,245,0.1);
  color: #F5F5F5;
  border-color: #F5F5F5;
}

.btn--blue {
  background: var(--accent-blue);
  color: #fff;
}

.btn--blue:hover {
  background: #1976D2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,150,243,0.35);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.82) 0%,
    rgba(20,20,20,0.65) 50%,
    rgba(10,10,10,0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
  border-left: 3px solid var(--accent-green);
  padding-left: 12px;
}

.hero h1 {
  color: #F5F5F5;
  max-width: 820px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(245,245,245,0.78);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-compliance {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col--60-40 {
  grid-template-columns: 3fr 2fr;
}

.two-col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.two-col-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.two-col-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.two-col-image:hover img {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-medium);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.card-icon--green { background: rgba(76,175,80,0.1); }
.card-icon--blue { background: rgba(33,150,243,0.1); }
.card-icon--orange { background: rgba(255,152,0,0.1); }

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-green);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-accent--blue { background: var(--accent-blue); }
.card-accent--orange { background: var(--accent-orange); }

/* ===== STAT STRIP ===== */
.stat-strip {
  background: var(--bg-dark);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
}

/* ===== FACT STRIP ===== */
.fact-strip {
  background: var(--accent-green);
  padding: 40px 0;
}

.fact-strip-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.fact-item {
  flex: 1;
  min-width: 200px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.fact-item:last-child { border-right: none; }

.fact-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.fact-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: var(--bg-dark);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 14rem;
  color: rgba(76,175,80,0.08);
  line-height: 1;
  user-select: none;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #F5F5F5;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-attribution {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  position: relative;
  z-index: 1;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.timeline-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.timeline-item {
  text-align: center;
  padding: 0 8px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--accent-green);
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.timeline-step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table thead th {
  background: var(--bg-dark);
  color: #F5F5F5;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border: none;
}

.info-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}

.info-table tbody tr:hover {
  background: rgba(76,175,80,0.04);
}

.info-table td {
  padding: 14px 20px;
  vertical-align: top;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== ACCORDION ===== */
.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.accordion-trigger h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}

.accordion-trigger:hover h3 {
  color: var(--accent-blue);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.accordion-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-icon {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: rotate(180deg);
}

.accordion-item.open .accordion-icon::after {
  border-color: #fff;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 0 24px;
}

.accordion-body-inner p {
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ===== GLOSSARY RAIL ===== */
.glossary-rail {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 88px;
}

.glossary-rail-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.glossary-term {
  margin-bottom: 18px;
}

.glossary-term-word {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 4px;
}

.glossary-term-def {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ===== PROCESS FLOW ===== */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  color: #F5F5F5;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.process-step-content h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.process-step-content p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== CHECKLIST ===== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checklist-item:hover {
  border-color: var(--accent-green);
  box-shadow: 0 2px 12px rgba(76,175,80,0.1);
}

.checklist-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.checklist-check::after {
  content: '';
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.checklist-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  border-left: 4px solid var(--accent-green);
  background: rgba(76,175,80,0.06);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.highlight-box--blue {
  border-color: var(--accent-blue);
  background: rgba(33,150,243,0.06);
}

.highlight-box--orange {
  border-color: var(--accent-orange);
  background: rgba(255,152,0,0.06);
}

.highlight-box p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  background: #FAFAFA;
  margin-top: 48px;
}

.disclaimer-box--alert {
  border-color: var(--accent-orange);
  background: rgba(255,152,0,0.04);
}

.disclaimer-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== CLAUSE HIGHLIGHT ===== */
.clause-highlight {
  border: 1.5px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: rgba(33,150,243,0.04);
  margin: 20px 0;
}

.clause-highlight p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* ===== MATRIX WHEEL ===== */
.wheel-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 400px;
  margin: 0 auto;
}

.wheel-segment {
  padding: 28px 24px;
  text-align: center;
}

.wheel-segment:nth-child(1) { background: rgba(76,175,80,0.12); border-radius: 40px 0 0 0; }
.wheel-segment:nth-child(2) { background: rgba(33,150,243,0.12); border-radius: 0 40px 0 0; }
.wheel-segment:nth-child(3) { background: rgba(255,152,0,0.12); border-radius: 0 0 0 40px; }
.wheel-segment:nth-child(4) { background: rgba(96,96,96,0.1); border-radius: 0 0 40px 0; }

.wheel-segment-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.wheel-segment h3 {
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.wheel-segment p {
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ===== ZIGZAG CARDS ===== */
.zigzag-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zigzag-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease;
}

.zigzag-card:hover { box-shadow: var(--shadow-md); }

.zigzag-card:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.zigzag-card:nth-child(even) .zigzag-card-icon {
  order: 2;
}

.zigzag-card:nth-child(even) .zigzag-card-content {
  order: 1;
}

.zigzag-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-primary);
  min-height: 100px;
}

.zigzag-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zigzag-icon-circle--green { background: rgba(76,175,80,0.15); }
.zigzag-icon-circle--blue { background: rgba(33,150,243,0.15); }
.zigzag-icon-circle--orange { background: rgba(255,152,0,0.15); }

.zigzag-icon-circle svg {
  width: 28px;
  height: 28px;
}

.zigzag-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.zigzag-card-content p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== TIP STRIP ===== */
.tip-strip {
  background: var(--bg-dark);
  padding: 40px;
  border-radius: var(--radius);
  margin: 32px 0;
}

.tip-strip-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.tip-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-strip-item {
  border-left: 2px solid var(--accent-orange);
  padding-left: 16px;
}

.tip-strip-item h3 {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: #F5F5F5;
  margin-bottom: 6px;
}

.tip-strip-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(245,245,245,0.6);
  margin: 0;
}

/* ===== BALANCE DIAGRAM ===== */
.balance-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}

.balance-cell {
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: background 0.2s;
}

.balance-cell:hover { background: rgba(255,255,255,0.08); }

.balance-cell-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.balance-cell h3 {
  font-size: 0.88rem;
  color: #F5F5F5;
  margin-bottom: 6px;
}

.balance-cell p {
  font-size: 0.78rem;
  color: rgba(245,245,245,0.5);
  margin: 0;
}

/* ===== NUMBERED STEPS ===== */
.numbered-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.numbered-step {
  counter-increment: steps;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.numbered-step:last-child { border-bottom: none; }

.numbered-step::before {
  content: counter(steps, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  min-width: 40px;
}

.numbered-step-content h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.numbered-step-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== ARTICLE LAYOUT ===== */
.article-container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.article-main { min-width: 0; }

.article-aside {
  position: sticky;
  top: 88px;
}

.article-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.article-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.article-section h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.article-section h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.article-section p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.article-section ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-section ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.article-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}

.toc-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.toc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-links a {
  font-size: 0.83rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.toc-links a:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* ===== ALERT BOX ===== */
.alert-box {
  border: 2px solid var(--accent-orange);
  background: rgba(255,152,0,0.06);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}

.alert-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.alert-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.alert-box-header h2 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent-orange);
}

.alert-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.12);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-green);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.form-submit:hover {
  background: #43A047;
  box-shadow: 0 4px 16px rgba(76,175,80,0.3);
}

.contact-info-block {
  background: var(--bg-dark);
  padding: 36px;
  border-radius: var(--radius);
}

.contact-info-block h3 {
  color: #F5F5F5;
  margin-bottom: 24px;
  font-size: 1rem;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.92rem;
  color: rgba(245,245,245,0.85);
}

.contact-detail-value a {
  color: rgba(245,245,245,0.85);
  text-decoration: none;
}

.contact-detail-value a:hover { color: var(--accent-green); }

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
}

.thankyou-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 64px 48px;
  box-shadow: var(--shadow-md);
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background: rgba(76,175,80,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thankyou-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2.5;
}

/* ===== MISSION PANEL ===== */
.mission-panel {
  background: var(--bg-dark);
  padding: 48px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}

.mission-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-green);
}

.mission-panel h2 {
  color: #F5F5F5;
  margin-bottom: 16px;
}

.mission-panel p {
  color: rgba(245,245,245,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-dark);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent-green), var(--accent-blue), var(--accent-orange));
}

.page-hero h1 {
  color: #F5F5F5;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(245,245,245,0.65);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

/* ===== CATEGORY BADGE ===== */
.category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.category-badge--green {
  background: rgba(76,175,80,0.1);
  color: var(--accent-green);
}

.category-badge--blue {
  background: rgba(33,150,243,0.1);
  color: var(--accent-blue);
}

.category-badge--orange {
  background: rgba(255,152,0,0.1);
  color: var(--accent-orange);
}

/* ===== INLINE ACCENT LIST ===== */
.accent-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.accent-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.accent-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--accent-green);
}

.accent-list--blue li::before { background: var(--accent-blue); }
.accent-list--orange li::before { background: var(--accent-orange); }

/* ===== SECTION SEPARATOR ===== */
.sep {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.sep-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.sep-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

/* ===== FAQ CATEGORIES ===== */
.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-blue);
  display: inline-block;
}

/* ===== COOKIE TABLE ===== */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--bg-dark);
  color: #F5F5F5;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cookie-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.cookie-table tr:hover td {
  background: rgba(76,175,80,0.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-toggle { display: flex; }

  .two-col,
  .two-col--reverse,
  .two-col--60-40,
  .two-col--40-60 {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .two-col--reverse > * { order: unset; }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-container {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    order: -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line { display: none; }

  .tip-strip-grid {
    grid-template-columns: 1fr;
  }

  .balance-diagram {
    grid-template-columns: 1fr 1fr;
  }

  .zigzag-card,
  .zigzag-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .zigzag-card:nth-child(even) .zigzag-card-icon { order: unset; }
  .zigzag-card:nth-child(even) .zigzag-card-content { order: unset; }

  .wheel-diagram {
    max-width: 320px;
  }
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.glossary-rail {
  position: sticky;
  top: 100px;
}

.glossary-rail-inner {
  background: #fff;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-green);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.glossary-rail-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.glossary-list { display: flex; flex-direction: column; gap: 16px; }

.glossary-item dt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.glossary-item dd {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.legal-content { min-width: 0; }

.legal-section-group {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.legal-section-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section-group h2 {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-section-group h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-primary);
}

.legal-article { max-width: 860px; margin: 0 auto; }

.legal-article--disclaimer { max-width: 900px; }

.legal-intro-block {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}

.legal-intro-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.chapter-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.chapter-block:last-of-type {
  border-bottom: none;
}

.chapter-number {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(33,150,243,0.08);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.chapter-block h2 {
  margin-bottom: 18px;
}

.chapter-block h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.key-clause-box {
  background: rgba(76,175,80,0.07);
  border-left: 4px solid var(--accent-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.key-clause-box--blue {
  background: rgba(33,150,243,0.07);
  border-left-color: var(--accent-blue);
}

.key-clause-box--orange {
  background: rgba(255,152,0,0.07);
  border-left-color: var(--accent-orange);
}

.key-clause-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.key-clause-label--blue { color: var(--accent-blue); }
.key-clause-label--orange { color: var(--accent-orange); }

.key-clause-box p { margin-bottom: 0; }

.legal-list {
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list--styled li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-list--styled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.cookie-matrix-wrapper { overflow-x: auto; margin: 20px 0; }

.cookie-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-matrix thead tr {
  background: var(--bg-dark);
  color: var(--text-white);
}

.cookie-matrix th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.cookie-matrix td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  line-height: 1.55;
  vertical-align: top;
}

.cookie-matrix tbody tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

.cookie-matrix--absent thead tr { background: #555; }

.cookie-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.cookie-badge--essential {
  background: rgba(76,175,80,0.12);
  color: #2e7d32;
}

.cookie-badge--absent {
  background: rgba(0,0,0,0.07);
  color: #888;
}

.cookie-matrix code {
  font-size: 0.82rem;
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  color: var(--text-primary);
}

.browser-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.browser-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
}

.browser-item h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.browser-item p {
  font-size: 0.87rem;
  margin-bottom: 0;
}

.disclaimer-primary-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-dark);
  color: var(--text-white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 48px;
}

.disclaimer-primary-box h2 {
  color: var(--text-white);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.disclaimer-primary-box p {
  color: rgba(245,245,245,0.85);
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.disclaimer-primary-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255,152,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.alert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.alert-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}

.alert-item--no { border-top: 3px solid var(--accent-orange); }

.alert-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.alert-item-header h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.alert-marker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.alert-marker--no {
  background: rgba(255,152,0,0.12);
  color: #e65100;
}

.alert-item p { font-size: 0.9rem; margin-bottom: 0; }

.page-hero--alert {
  background-image: linear-gradient(to right, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.75) 100%), none;
  background-color: #2C2C2C;
}

@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .glossary-rail {
    position: static;
  }
  .alert-grid {
    grid-template-columns: 1fr;
  }
  .browser-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .disclaimer-primary-box {
    flex-direction: column;
    gap: 16px;
  }
  .legal-intro-block { padding: 20px; }
  .chapter-block { margin-bottom: 32px; padding-bottom: 32px; }
  .cookie-matrix th, .cookie-matrix td { padding: 10px 12px; }

  .container, .container--wide {
    padding: 0 20px;
  }

  .section { padding: 56px 0; }

  .cards-grid,
  .cards-grid--4,
  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .stat-strip-inner {
    justify-content: flex-start;
    gap: 24px;
  }

  .fact-strip-inner {
    flex-direction: column;
  }

  .fact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0 0 16px; }
  .fact-item:last-child { border-bottom: none; }

  .hero-content { padding: 100px 20px 60px; }

  .quote-block { padding: 40px 24px; }

  .timeline-inner { grid-template-columns: 1fr; }

  .mission-panel { padding: 32px 24px; }

  .thankyou-card { padding: 40px 24px; }

  #cookie-banner { padding: 16px 20px; }

  .balance-diagram { grid-template-columns: 1fr; }

  .wheel-diagram { grid-template-columns: 1fr; }

  .wheel-segment:nth-child(1),
  .wheel-segment:nth-child(2),
  .wheel-segment:nth-child(3),
  .wheel-segment:nth-child(4) {
    border-radius: var(--radius);
  }
}
