@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1A2F4A;
  --gold: #D4AF37;
  --cream: #F5F5DC;
  --light-gray: #D3D3D3;
  --dark-text: #4A4A4A;
  --white: #ffffff;
  --section-gap: 80px;
  --inner-gap: 32px;
  --border-radius: 4px;
  --transition: 0.3s ease;
  --shadow-card: 0 2px 16px rgba(26,47,74,0.10);
  --shadow-card-hover: 0 8px 32px rgba(26,47,74,0.18);
  --container-max: 1440px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Open Sans', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 14px; }

p { margin-bottom: 16px; color: var(--dark-text); }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul, ol { padding-left: 24px; margin-bottom: 16px; color: var(--dark-text); }
li { margin-bottom: 6px; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section-gap { padding: var(--section-gap) 0; }
.section-gap-sm { padding: 48px 0; }

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--dark-text); }

.bg-primary { background-color: var(--primary); }
.bg-cream { background-color: var(--cream); }
.bg-light { background-color: #f8f8f4; }
.bg-gray { background-color: #f0f0ec; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

.divider-center { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-text);
  max-width: 680px;
}

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--cream);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card-body { padding: 32px; }
.card-img img { width: 100%; height: 240px; object-fit: cover; display: block; }

.icon-wrap {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--light-gray);
  color: var(--primary);
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.tag-gold { background: var(--gold); color: var(--primary); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo span { color: var(--gold); }
.logo:hover { color: var(--cream); }

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 6px 14px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.nav-menu a.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 16px 0;
}

.mobile-menu a {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.mobile-menu a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
.mobile-menu.open { display: block; }

.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,47,74,0.92) 0%, rgba(26,47,74,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero-text { max-width: 620px; }

.hero-text h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-text .lead {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  color: rgba(245,245,220,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-disclaimer {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(245,245,220,0.5);
  letter-spacing: 0.04em;
  margin-top: 20px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-decor {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 0;
}

.scroll-arrow {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: bounce 2s infinite;
}

.scroll-arrow svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.chat-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
}

.chat-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,175,55,0.45);
  transition: background var(--transition), transform var(--transition);
}

.chat-toggle-btn:hover { background: var(--primary); transform: scale(1.07); }
.chat-toggle-btn svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 2; }
.chat-toggle-btn:hover svg { stroke: var(--gold); }

.chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(26,47,74,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: var(--primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; }

.chat-header-info h4 {
  color: var(--cream);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  margin: 0;
}

.chat-header-info span {
  font-size: 0.75rem;
  color: rgba(245,245,220,0.6);
  font-family: 'Lato', sans-serif;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Merriweather', serif;
  font-size: 0.82rem;
  line-height: 1.65;
}

.chat-bubble.bot {
  background: #f0f0ec;
  color: var(--primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.user {
  background: var(--primary);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 12px;
}

.chat-quick-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 14px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
}

.chat-quick-btn:hover { background: var(--primary); color: var(--cream); }
.chat-quick-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--primary); }

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--light-gray);
  background: #fafaf7;
}

.chat-input-row input {
  flex: 1;
  border: 1.5px solid var(--light-gray);
  border-radius: 20px;
  padding: 9px 16px;
  font-family: 'Merriweather', serif;
  font-size: 0.8rem;
  outline: none;
  color: var(--primary);
  background: var(--white);
  transition: border-color var(--transition);
}

.chat-input-row input:focus { border-color: var(--gold); }

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover { background: var(--gold); }
.chat-send-btn svg { width: 16px; height: 16px; stroke: var(--cream); fill: none; stroke-width: 2; }
.chat-send-btn:hover svg { stroke: var(--primary); }

.typing { display: flex; gap: 4px; align-items: center; padding: 4px 0; }
.typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--light-gray);
  animation: typing-dot 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }

.knowledge-map {
  background: #f0f0ec;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
  margin-top: 4px;
}

.knowledge-map h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.knowledge-map ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.knowledge-map ul li {
  font-size: 0.78rem;
  color: var(--primary);
  font-family: 'Lato', sans-serif;
  padding: 3px 0;
  border-bottom: 1px solid rgba(26,47,74,0.08);
}

.knowledge-map ul li:last-child { border-bottom: none; }

.section-featured {
  position: relative;
  overflow: hidden;
}

.section-featured-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.section-featured-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0.88;
  z-index: 1;
}

.section-featured-content {
  position: relative;
  z-index: 2;
}

.two-col-img-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.two-col-img-right .col-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-img-right .col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col-img-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.two-col-img-left .col-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.two-col-img-left .col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.simulator-section { background: var(--cream); }

.mood-selector {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mood-btn {
  flex: 1;
  min-width: 100px;
  padding: 20px 16px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-align: center;
  transition: all var(--transition);
}

.mood-btn:hover { border-color: var(--gold); background: #fffef7; }
.mood-btn.selected { border-color: var(--gold); background: var(--gold); color: var(--primary); }
.mood-btn .mood-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }

.simulator-result {
  background: var(--primary);
  color: var(--cream);
  border-radius: 6px;
  padding: 28px 32px;
  display: none;
  margin-top: 24px;
}

.simulator-result.visible { display: block; }

.simulator-result h4 {
  font-family: 'Lato', sans-serif;
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1rem;
}

.simulator-result p { color: var(--cream); margin-bottom: 12px; }

.topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.topic-chip {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.topic-chip:hover { background: var(--gold); color: var(--primary); }

.paths-section { background: #f8f8f4; }

.path-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.path-card-img { height: 200px; overflow: hidden; }
.path-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.path-card:hover .path-card-img img { transform: scale(1.04); }

.path-card-body { padding: 28px; }
.path-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.path-card-body p { font-size: 0.88rem; color: var(--dark-text); }

.path-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 16px;
  transition: gap var(--transition);
}

.path-card-link:hover { gap: 10px; color: var(--gold); }
.path-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.mini-game-section { background: var(--primary); padding: var(--section-gap) 0; }

.day-builder {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 36px 0;
}

.day-item {
  width: 100px;
  height: 100px;
  background: rgba(245,245,220,0.08);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: grab;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245,245,220,0.7);
  gap: 8px;
  transition: all var(--transition);
  user-select: none;
}

.day-item:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  color: var(--cream);
}

.day-item.placed {
  border-color: var(--gold);
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.day-item svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.day-drop-zone {
  min-height: 80px;
  border: 2px dashed rgba(212,175,55,0.35);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
  transition: border-color var(--transition), background var(--transition);
}

.day-drop-zone.drag-over {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.day-drop-zone .placeholder-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: rgba(245,245,220,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.day-result {
  background: rgba(245,245,220,0.06);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  display: none;
}

.day-result.visible { display: block; }
.day-result p { color: var(--cream); margin-bottom: 8px; font-size: 0.9rem; }

.popular-queries { background: var(--white); }

.query-card {
  background: #f8f8f4;
  border-radius: var(--border-radius);
  padding: 28px;
  border: 1px solid var(--light-gray);
  cursor: pointer;
  transition: all var(--transition);
}

.query-card:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-2px);
}

.query-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.query-card p { font-size: 0.85rem; color: var(--dark-text); margin: 0; }

.query-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.query-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }

.social-proof { background: var(--cream); }

.quote-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  position: relative;
}

.quote-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-card p { font-size: 0.9rem; color: var(--dark-text); padding-top: 24px; font-style: italic; }
.quote-card .quote-author { font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 16px; color: var(--gold); }

.rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.rating-text { font-family: 'Lato', sans-serif; font-size: 0.85rem; color: var(--dark-text); }
.rating-text strong { color: var(--primary); }

.faq-section { background: #f0f0ec; }

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-icon svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2.5; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { stroke: var(--primary); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner { padding: 0 0 20px; }
.faq-answer-inner p { font-size: 0.9rem; color: var(--dark-text); }
.faq-item.open .faq-answer { max-height: 300px; }

.edu-disclaimer {
  background: var(--primary);
  padding: 32px 0;
  text-align: center;
}

.edu-disclaimer p {
  color: rgba(245,245,220,0.75);
  font-size: 0.85rem;
  margin: 0;
}

.edu-disclaimer strong { color: var(--gold); }

.site-footer {
  background: #0e1d2e;
  color: var(--light-gray);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-brand h3 span { color: var(--gold); }

.footer-brand .tagline {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.45);
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand .edu-note {
  font-size: 0.8rem;
  color: rgba(245,245,220,0.5);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.footer-nav h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul { list-style: none; padding: 0; margin: 0; }

.footer-nav ul li { margin-bottom: 10px; }

.footer-nav ul li a {
  font-size: 0.85rem;
  color: rgba(245,245,220,0.55);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: color var(--transition);
}

.footer-nav ul li a:hover { color: var(--gold); }

.footer-contact { }

.footer-contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item span {
  font-size: 0.83rem;
  color: rgba(245,245,220,0.6);
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(245,245,220,0.35);
  line-height: 1.65;
  font-family: 'Lato', sans-serif;
  max-width: 800px;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(245,245,220,0.3);
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #0e1d2e;
  border-top: 2px solid var(--gold);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: rgba(245,245,220,0.7);
  line-height: 1.6;
}

.cookie-text strong { color: var(--cream); }

.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 1.5px solid;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

.cookie-btn-accept:hover { background: #c9a22e; border-color: #c9a22e; }

.cookie-btn-reject {
  background: transparent;
  border-color: rgba(245,245,220,0.3);
  color: rgba(245,245,220,0.6);
}

.cookie-btn-reject:hover { border-color: var(--cream); color: var(--cream); }

.cookie-btn-more {
  background: transparent;
  border-color: transparent;
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.4);
}

.cookie-btn-more:hover { color: #c9a22e; }

.page-hero {
  background: var(--primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.page-hero h1 { color: var(--cream); margin-bottom: 16px; }
.page-hero p { color: rgba(245,245,220,0.7); max-width: 600px; font-size: 1rem; }

.about-values { background: var(--cream); }

.value-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.value-card .icon-wrap { margin: 0 auto 20px; }

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 56px;
  position: relative;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.timeline-item:nth-child(even) .timeline-content { text-align: right; }

.timeline-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-spacer { flex: 1; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: var(--primary);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field textarea { min-height: 160px; resize: vertical; line-height: 1.6; }

.form-disclaimer {
  background: #f0f0ec;
  border-radius: var(--border-radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}

.form-disclaimer p { font-size: 0.82rem; color: var(--dark-text); margin: 0; }

.info-panel {
  background: var(--cream);
  border-radius: var(--border-radius);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
}

.info-panel h3 {
  font-size: 1rem;
  margin-bottom: 24px;
  font-family: 'Lato', sans-serif;
}

.thank-you-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  background: var(--white);
}

.thank-you-inner { text-align: center; max-width: 560px; margin: 0 auto; }

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-icon svg { width: 36px; height: 36px; stroke: var(--primary); fill: none; stroke-width: 2.5; }

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.policy-content h2:first-of-type { margin-top: 0; border-top: none; }

.policy-content p { font-size: 0.92rem; line-height: 1.8; color: var(--dark-text); }
.policy-content ul { font-size: 0.92rem; color: var(--dark-text); }
.policy-content ul li { margin-bottom: 8px; }

.info-context {
  background: #f0f0ec;
  border-radius: var(--border-radius);
  padding: 28px 32px;
  margin: 48px 0;
  border-left: 4px solid var(--gold);
}

.info-context h3 { font-size: 1rem; margin-bottom: 10px; }
.info-context p { font-size: 0.85rem; color: var(--dark-text); margin: 0; }

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col-img-right, .two-col-img-left { grid-template-columns: 1fr; }
  .two-col-img-right .col-img, .two-col-img-left .col-img { height: 300px; }
  .two-col-img-right .col-img { order: -1; }
  .two-col-img-right .col-text, .two-col-img-left .col-text { padding: 40px 36px; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column; gap: 0; padding-left: 48px; }
  .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-item:nth-child(even) .timeline-content { text-align: left; }
  .timeline-dot { left: 20px; }
  .timeline-spacer { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  .container { padding: 0 20px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .chat-panel { width: calc(100vw - 48px); }
  .chat-widget { bottom: 20px; right: 20px; }
  .mood-selector { flex-direction: column; }
  .day-builder { gap: 12px; }
  .day-item { width: 80px; height: 80px; font-size: 0.7rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }
}
