@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #F5F5F5;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-blue: #4A90E2;
  --color-blue-dark: #2c6db5;
  --color-green: #7ED321;
  --color-red: #D0021B;
  --color-border: #CCCCCC;
  --color-border-light: #EEEEEE;
  --color-card-bg: #FFFFFF;
  --color-overlay: rgba(0,0,0,0.45);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lora', serif;
  --radius: 4px;
  --max-width: 1440px;
  --section-gap: 96px;
  --section-gap-sm: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-blue-dark);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.container--narrow {
  max-width: 860px;
}

.container--medium {
  max-width: 1100px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HEADER / NAV
============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(245, 245, 245, 0.97);
  border-bottom: 1px solid var(--color-border-light);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo__mark {
  width: 36px;
  height: 36px;
  background-color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo__mark span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.nav-logo:hover .nav-logo__name,
.nav-logo:hover {
  text-decoration: none;
  color: var(--color-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
  text-decoration: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  padding: 16px 0 24px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 5%;
  border-bottom: 1px solid var(--color-border-light);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-blue);
  background-color: rgba(74,144,226,0.05);
  text-decoration: none;
}

/* ============================================
   PAGE OFFSET FOR FIXED HEADER
============================================ */
.page-body {
  padding-top: 70px;
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 80px 0 72px;
}

.hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color-blue);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(74,144,226,0.35);
}

.hero__cta:hover {
  background-color: var(--color-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,144,226,0.45);
  text-decoration: none;
  color: #fff;
}

.hero__badge {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}

.hero__badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green);
  flex-shrink: 0;
}

/* ============================================
   SECTION WRAPPERS
============================================ */

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.section--sm {
  padding-top: var(--section-gap-sm);
  padding-bottom: var(--section-gap-sm);
}

.section--alt {
  background-color: #EBEBEB;
}

.section--dark {
  background-color: #222222;
  color: #F0F0F0;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #F0F0F0;
}

.section--dark p {
  color: rgba(240,240,240,0.85);
}

.section--blue {
  background-color: var(--color-blue);
  color: #fff;
}

.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--blue p {
  color: #fff;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 680px;
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background-color: var(--color-blue);
  margin: 20px 0 28px;
  border-radius: 2px;
}

/* ============================================
   ENGAGEMENT STRIP (COMMITMENT BAR)
============================================ */

.engagement-strip {
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 48px 0;
}

.engagement-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.engagement-strip__headline {
  max-width: 640px;
}

.engagement-strip__headline h2 {
  margin-bottom: 12px;
}

.engagement-strip__headline p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.engagement-strip__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.engagement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 200px;
  text-align: center;
}

.engagement-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(74,144,226,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.engagement-item__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engagement-item__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
}

.engagement-item__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   PERSPECTIVES GRID (CARD GRID)
============================================ */

.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.perspective-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.perspective-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.perspective-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.perspective-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.perspective-card:hover .perspective-card__image img {
  transform: scale(1.04);
}

.perspective-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--color-blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
}

.perspective-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.perspective-card__title {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.perspective-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.link-arrow::after {
  content: '→';
  font-size: 1rem;
  line-height: 1;
}

.link-arrow:hover {
  color: var(--color-blue-dark);
  border-bottom-color: var(--color-blue-dark);
  text-decoration: none;
}

/* ============================================
   STATS STRIP
============================================ */

.stats-strip {
  background-color: #222;
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   REPORTAGES / FOCUS BLOCKS
============================================ */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.focus-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.focus-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}

.focus-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-border-light);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}

.focus-card__title {
  margin-bottom: 10px;
  font-size: 1rem;
}

.focus-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   BENEFITS CARDS
============================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-green);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.benefit-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  background-color: rgba(126,211,33,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__title {
  margin-bottom: 10px;
  font-size: 1rem;
}

.benefit-card__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   CONCEPT MATRIX (INTERACTIVE)
============================================ */

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  border: 1px solid var(--color-border);
}

.matrix-item {
  background-color: var(--color-card-bg);
  padding: 28px 20px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
  border: 1px solid var(--color-border-light);
}

.matrix-item:hover {
  background-color: rgba(74,144,226,0.06);
}

.matrix-item__term {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.matrix-item__def {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.matrix-item:hover .matrix-item__def {
  max-height: 120px;
  opacity: 1;
}

/* ============================================
   TWO-COLUMN SPLIT SECTIONS
============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reversed {
  direction: rtl;
}

.split--reversed > * {
  direction: ltr;
}

.split__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.split__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  pointer-events: none;
}

.split__content h2 {
  margin-bottom: 16px;
}

.split__content .section-divider {
  margin-bottom: 24px;
}

.split__content p {
  color: var(--color-text-light);
}

.split__content ul {
  list-style: none;
  margin-top: 16px;
}

.split__content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.split__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-blue);
  flex-shrink: 0;
}

/* ============================================
   FAQ ACCORDION
============================================ */

.faq-list {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-blue);
}

.faq-question__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-blue);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-question.open .faq-question__icon {
  transform: rotate(45deg);
  background-color: var(--color-blue);
  color: #fff;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.75;
  padding-bottom: 20px;
}

.faq-answer.open {
  max-height: 400px;
}

/* ============================================
   PRINCIPLES / ACTIVE COMPONENTS SECTION
============================================ */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.principle-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.principle-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.principle-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74,144,226,0.1);
}

.principle-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card__title {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.principle-card__text {
  font-size: 0.84rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER CTA BLOCK
============================================ */

.newsletter-block {
  background-color: #222;
  padding: 80px 0;
}

.newsletter-block__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-block h2 {
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-block p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1 1 280px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-blue);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn--blue {
  background-color: var(--color-blue);
  color: #fff;
}

.btn--blue:hover {
  background-color: var(--color-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74,144,226,0.4);
  color: #fff;
  text-decoration: none;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.btn--outline:hover {
  background-color: var(--color-blue);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.newsletter-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   DISCLAIMER / CONTEXT BLOCK
============================================ */

.context-block {
  background-color: #FFF8E1;
  border-left: 4px solid var(--color-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-top: 48px;
}

.context-block__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}

.context-block p {
  font-size: 0.88rem;
  color: #5a4a2a;
  line-height: 1.65;
  margin-bottom: 8px;
}

.context-block p:last-child {
  margin-bottom: 0;
}

/* ============================================
   FOOTER
============================================ */

.site-footer {
  background-color: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand__logo-mark {
  width: 34px;
  height: 34px;
  background-color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand__logo-mark span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-brand__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-edu-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  border: 1px solid rgba(126,211,33,0.4);
  padding: 5px 12px;
  border-radius: 2px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-contact-line svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-line a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: #fff;
}

.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom__copy {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-bottom__edu {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   COOKIE BANNER
============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  border-top: 2px solid var(--color-blue);
  padding: 20px 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  flex: 1;
}

.cookie-banner__text strong {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn--accept {
  background-color: var(--color-blue);
  color: #fff;
}

.cookie-btn--accept:hover {
  background-color: var(--color-blue-dark);
  color: #fff;
}

.cookie-btn--refuse {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.cookie-btn--refuse:hover {
  background-color: rgba(255,255,255,0.08);
  color: #fff;
}

.cookie-btn--info {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: underline;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 4px 0;
}

.cookie-btn--info:hover {
  color: #fff;
}

/* ============================================
   ABOUT PAGE SPECIFIC
============================================ */

.page-hero {
  padding: 80px 0 72px;
  background-color: #222;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(74,144,226,0.06);
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.page-hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-bottom: 0;
}

/* ============================================
   TIMELINE
============================================ */

.timeline {
  position: relative;
  max-width: 760px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border-light);
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-blue);
  border: 3px solid var(--color-bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-item__dot span {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.timeline-item__content {
  padding-top: 6px;
  flex: 1;
}

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 6px;
}

.timeline-item__title {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.timeline-item__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-form-wrap {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(74,144,226,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 0;
}

.contact-faq {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-top: 32px;
}

.contact-faq h3 {
  margin-bottom: 20px;
  font-size: 1rem;
}

.contact-faq-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-faq-item__q {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact-faq-item__a {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   THANK YOU PAGE
============================================ */

.thank-you-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 64px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}

.thank-you-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(126,211,33,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thank-you-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-card h1 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.thank-you-card p {
  color: var(--color-text-light);
  margin-bottom: 36px;
}

/* ============================================
   POLICY PAGES
============================================ */

.policy-page .page-hero {
  padding: 64px 0 56px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.policy-layout--centered {
  display: block;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-light);
  font-size: 1.3rem;
}

.policy-content h2:first-child {
  margin-top: 0;
  border-top: none;
}

.policy-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.policy-content p {
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.policy-content ul,
.policy-content ol {
  margin: 12px 0 20px 0;
}

.policy-content ul li,
.policy-content ol li {
  position: relative;
  padding-left: 20px;
  font-size: 0.93rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
  line-height: 1.65;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-blue);
}

.policy-content ol {
  list-style: decimal;
  padding-left: 20px;
}

.policy-content ol li {
  padding-left: 6px;
}

.policy-content ol li::before {
  display: none;
}

.glossary-rail {
  position: sticky;
  top: 90px;
}

.glossary-rail__inner {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.glossary-rail h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
}

.glossary-term {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.glossary-term:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term__word {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 4px;
}

.glossary-term__def {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.toc-rail {
  position: sticky;
  top: 90px;
}

.toc-rail__inner {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.toc-rail h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
}

.toc-rail ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-rail ul li a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.toc-rail ul li a:hover {
  color: var(--color-blue);
  border-left-color: var(--color-blue);
}

.policy-meta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

.key-highlight {
  background-color: rgba(74,144,226,0.07);
  border-left: 3px solid var(--color-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.key-highlight p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.warning-block {
  background-color: #FFF3F3;
  border-left: 3px solid var(--color-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.warning-block p {
  font-size: 0.9rem;
  color: #6b1a1a;
  margin-bottom: 0;
}

/* ============================================
   COOKIE PAGE SPECIFIC
============================================ */

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}

.cookie-table th {
  background-color: #333;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-light);
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) td {
  background-color: #fafafa;
}

.cookie-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.cookie-badge--required {
  background-color: rgba(126,211,33,0.15);
  color: #4a7a10;
}

.cookie-badge--optional {
  background-color: rgba(74,144,226,0.1);
  color: var(--color-blue-dark);
}

/* ============================================
   REFUND TIMELINE
============================================ */

.refund-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 32px 0;
}

.refund-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.refund-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -8px;
  width: 2px;
  background-color: var(--color-border-light);
}

.refund-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.refund-step__num span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.refund-step__content {
  padding-top: 8px;
  flex: 1;
  margin-bottom: 32px;
}

.refund-step__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.refund-step__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   DISCLAIMER SPECIFIC
============================================ */

.disclaimer-panel {
  background-color: #333;
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 32px 0;
}

.disclaimer-panel h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
}

.disclaimer-panel-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclaimer-panel-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(208,2,27,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-panel-item__icon svg {
  width: 12px;
  height: 12px;
  stroke: #ff6b6b;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.disclaimer-panel-item p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

blockquote.policy-quote {
  border-left: 4px solid var(--color-blue);
  padding: 16px 24px;
  background-color: rgba(74,144,226,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
}

blockquote.policy-quote p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE SPECIFIC
============================================ */

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.philosophy-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s ease;
}

.philosophy-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.philosophy-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(74,144,226,0.2);
  margin-bottom: 12px;
  line-height: 1;
}

.philosophy-card__title {
  margin-bottom: 10px;
  font-size: 1rem;
}

.philosophy-card__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   GEOMETRIC DECORATIVE ELEMENTS
============================================ */

.geo-dots {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--color-blue) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section--decorated {
  position: relative;
  overflow: hidden;
}

.geo-line-v {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-blue), transparent);
  opacity: 0.15;
  pointer-events: none;
}

/* ============================================
   SCROLL REVEAL
============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .glossary-rail,
  .toc-rail {
    position: static;
  }

  .split {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-gap: 72px;
    --section-gap-sm: 48px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split--reversed {
    direction: ltr;
  }

  .split__image img {
    height: 320px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 700px) {
  :root {
    --section-gap: 56px;
    --section-gap-sm: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    padding: 60px 0 56px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .thank-you-card {
    padding: 40px 24px;
  }

  .cookie-table {
    font-size: 0.78rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 10px 10px;
  }

  .perspectives-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .matrix-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .benefits-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
