@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 {
  --color-primary: #34495E;
  --color-primary-dark: #2C3E50;
  --color-primary-light: #4A6278;
  --color-accent-green: #2ECC71;
  --color-accent-blue: #3498DB;
  --color-accent-orange: #E67E22;
  --color-neutral-light: #ECF0F1;
  --color-neutral-mid: #BDC3C7;
  --color-neutral-dark: #7F8C8D;
  --color-white: #FFFFFF;
  --color-bg-section: #F8FAFB;
  --color-text-body: #2C3E50;
  --color-text-muted: #5D6D7E;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(52,73,94,0.08);
  --shadow-md: 0 4px 16px rgba(52,73,94,0.12);
  --shadow-lg: 0 8px 32px rgba(52,73,94,0.16);
  --transition: 0.28s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p { line-height: 1.75; color: var(--color-text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-accent-blue { color: var(--color-accent-blue); }
.text-accent-green { color: var(--color-accent-green); }
.text-accent-orange { color: var(--color-accent-orange); }

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.label-tag--blue {
  background: rgba(52,152,219,0.1);
  color: var(--color-accent-blue);
}

.label-tag--green {
  background: rgba(46,204,113,0.1);
  color: var(--color-accent-green);
}

.label-tag--orange {
  background: rgba(230,126,34,0.1);
  color: var(--color-accent-orange);
}

.label-tag--neutral {
  background: rgba(52,73,94,0.08);
  color: var(--color-primary);
}

.section-line {
  width: 48px;
  height: 3px;
  background: var(--color-accent-blue);
  margin: 20px 0 28px;
  border-radius: 2px;
}

.section-line--green { background: var(--color-accent-green); }
.section-line--orange { background: var(--color-accent-orange); }
.section-line--center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--blue {
  background: var(--color-accent-blue);
  color: var(--color-white);
  border-color: var(--color-accent-blue);
}

.btn--blue:hover {
  background: #2980b9;
  border-color: #2980b9;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
}

/* ───── HEADER ───── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(52,73,94,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-green));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ───── FOOTER ───── */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
}

.footer-brand .logo-text { color: var(--color-white); }

.footer-edu-note {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(52,152,219,0.12);
  border-left: 3px solid var(--color-accent-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  font-style: italic;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-accent-blue);
  fill: none;
  stroke-width: 1.8;
}

.footer-hours {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.footer-hours p {
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

.footer-disclaimer p + p {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}

.footer-bottom a {
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.72);
}

/* ───── HERO ───── */

.hero {
  min-height: 100vh;
  background: var(--color-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(52,152,219,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(46,204,113,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(230,126,34,0.06) 0%, transparent 40%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero-text .label-tag {
  background: rgba(52,152,219,0.18);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(52,152,219,0.3);
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-disclaimer {
  margin-top: 28px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ───── FLASK VISUAL ───── */

.hero-flask-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flask-container {
  position: relative;
  width: 300px;
  height: 380px;
}

.flask-svg {
  width: 100%;
  height: 100%;
}

.floating-ingredient {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.88;
  animation: floatAround 6s ease-in-out infinite;
}

.floating-ingredient:nth-child(2) { top: 5%; left: -8%; animation-delay: 0s; }
.floating-ingredient:nth-child(3) { top: 15%; right: -10%; animation-delay: 1s; }
.floating-ingredient:nth-child(4) { bottom: 30%; left: -14%; animation-delay: 2s; }
.floating-ingredient:nth-child(5) { bottom: 15%; right: -8%; animation-delay: 1.5s; }
.floating-ingredient:nth-child(6) { top: 45%; left: -20%; animation-delay: 0.7s; }

@keyframes floatAround {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.04); }
}

.fi-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.fi-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.6;
}

.fi-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ───── KONSTRUKTOR ───── */

.konstruktor-section {
  background: var(--color-bg-section);
  position: relative;
  overflow: hidden;
}

.konstruktor-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-blue), var(--color-accent-green));
}

.konstruktor-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.konstruktor-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.ingredient-categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.category-block h3 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-neutral-mid);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 10px;
}

.ingredient-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-neutral-mid);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  user-select: none;
}

.ingredient-card:hover {
  border-color: var(--color-accent-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.ingredient-card.selected {
  border-color: var(--color-accent-green);
  background: rgba(46,204,113,0.05);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.15);
}

.ingredient-card.selected .ic-icon {
  background: rgba(46,204,113,0.12);
}

.ic-icon {
  width: 40px;
  height: 40px;
  background: rgba(52,73,94,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.ic-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.7;
}

.ingredient-card.selected .ic-icon svg {
  stroke: var(--color-accent-green);
}

.ic-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-body);
  text-align: center;
  line-height: 1.3;
}

.ic-add-btn {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--color-neutral-mid);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.ingredient-card:hover .ic-add-btn {
  border-color: var(--color-accent-blue);
  color: var(--color-accent-blue);
}

.ingredient-card.selected .ic-add-btn {
  background: var(--color-accent-green);
  border-color: var(--color-accent-green);
  color: var(--color-white);
}

/* ───── FLASK PANEL ───── */

.flask-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-neutral-mid);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 88px;
  overflow: hidden;
}

.flask-panel-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--color-neutral-light);
}

.flask-panel-header h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.flask-visual-wrap {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mini-flask {
  position: relative;
  width: 140px;
  height: 180px;
}

.mini-flask-svg {
  width: 100%;
  height: 100%;
}

.flask-liquid {
  transition: height 0.5s cubic-bezier(.25,.8,.25,1);
}

.flask-selected-list {
  width: 100%;
  min-height: 40px;
  padding: 0 24px 16px;
}

.flask-selected-list p {
  font-size: 0.8rem;
  color: var(--color-neutral-dark);
  text-align: center;
  font-style: italic;
}

.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(46,204,113,0.1);
  color: var(--color-primary);
  border-radius: 20px;
  margin: 3px;
}

.selected-tag button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  color: var(--color-neutral-dark);
  font-size: 1rem;
  transition: color var(--transition);
}

.selected-tag button:hover { color: #e74c3c; }

/* ───── BALANCE BARS ───── */

.balance-section {
  padding: 20px 24px;
  border-top: 1px solid var(--color-neutral-light);
}

.balance-section h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.balance-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.balance-bar-label {
  font-size: 0.75rem;
  color: var(--color-text-body);
  width: 90px;
  flex-shrink: 0;
}

.balance-bar-track {
  flex: 1;
  height: 6px;
  background: var(--color-neutral-light);
  border-radius: 3px;
  overflow: hidden;
}

.balance-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(.25,.8,.25,1);
  width: 0%;
}

.balance-bar-fill--energy { background: var(--color-accent-orange); }
.balance-bar-fill--protect { background: var(--color-accent-blue); }
.balance-bar-fill--recover { background: var(--color-accent-green); }
.balance-bar-fill--tone { background: #9b59b6; }
.balance-bar-fill--vitamins { background: #e74c3c; }

.balance-bar-val {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 32px;
  text-align: right;
}

.flask-panel-actions {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-msg {
  margin: 0 24px 16px;
  padding: 12px 14px;
  background: rgba(52,152,219,0.06);
  border-left: 3px solid var(--color-accent-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: none;
}

.result-msg.visible { display: block; }

/* ───── INFO PANELS ───── */

.panel-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.panel-two-col.reverse { direction: rtl; }
.panel-two-col.reverse > * { direction: ltr; }

.panel-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.panel-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.panel-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(52,73,94,0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ───── CARDS ROW ───── */

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cards-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon--blue { background: rgba(52,152,219,0.1); }
.card-icon--green { background: rgba(46,204,113,0.1); }
.card-icon--orange { background: rgba(230,126,34,0.1); }
.card-icon--purple { background: rgba(155,89,182,0.1); }

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.8;
}

.card-icon--blue svg { stroke: var(--color-accent-blue); }
.card-icon--green svg { stroke: var(--color-accent-green); }
.card-icon--orange svg { stroke: var(--color-accent-orange); }
.card-icon--purple svg { stroke: #9b59b6; }

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ───── COMPARISON TABLE ───── */

.comparison-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-neutral-light);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-neutral-mid);
}

.comparison-table td {
  padding: 14px 24px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-neutral-light);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table .col-concept {
  color: var(--color-text-body);
  font-weight: 500;
}

.comparison-table .col-val {
  color: var(--color-text-muted);
}

.comparison-table .col-enhanced {
  color: var(--color-primary);
  font-weight: 600;
}

.comparison-table .tag-up {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(46,204,113,0.1);
  color: var(--color-accent-green);
  margin-left: 6px;
}

/* ───── FAQ ───── */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-neutral-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-body);
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-accent-blue); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-accent-blue);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ───── STAT STRIP ───── */

.stat-strip {
  background: var(--color-primary);
  padding: 48px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ───── SECTION DARK ───── */

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2, .section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255,255,255,0.72);
}

.section-dark .section-line {
  background: var(--color-accent-green);
}

/* ───── CHAT WIDGET ───── */

.chat-section {
  background: var(--color-bg-section);
  position: relative;
}

.chat-container {
  max-width: 780px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-neutral-mid);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--color-primary);
  color: var(--color-white);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.6;
}

.chat-info h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.chat-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-messages {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
}

.chat-msg {
  display: flex;
  gap: 10px;
  animation: msgAppear 0.3s ease;
}

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.user {
  flex-direction: row-reverse;
}

.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-avatar svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.8;
}

.msg-avatar.bot-avatar {
  background: var(--color-primary);
}

.msg-avatar.bot-avatar svg {
  stroke: var(--color-white);
}

.msg-bubble {
  max-width: 70%;
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.bot .msg-bubble {
  background: var(--color-neutral-light);
  color: var(--color-text-body);
  border-radius: 4px 16px 16px 16px;
}

.user .msg-bubble {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 16px 4px 16px 16px;
}

.chat-quick-btns {
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--color-neutral-light);
}

.quick-btn {
  font-size: 0.78rem;
  padding: 7px 13px;
  background: transparent;
  border: 1.5px solid var(--color-neutral-mid);
  border-radius: 20px;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.quick-btn:hover {
  border-color: var(--color-accent-blue);
  color: var(--color-accent-blue);
  background: rgba(52,152,219,0.05);
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--color-neutral-light);
}

.chat-input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--color-neutral-mid);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-body);
  outline: none;
  transition: border-color var(--transition);
  background: var(--color-white);
}

.chat-input:focus {
  border-color: var(--color-accent-blue);
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-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(--color-primary-dark); }

.chat-send-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}

/* ───── GALLERY ROW ───── */

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,62,80,0.78));
  padding: 20px 16px 14px;
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ───── SECTION ABOUT ───── */

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-blue), var(--color-accent-green));
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent-blue);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent-blue);
}

.timeline-item:nth-child(even) .timeline-dot {
  background: var(--color-accent-green);
  box-shadow: 0 0 0 2px var(--color-accent-green);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--color-accent-green);
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
}

/* ───── DISCLAIMER BLOCK ───── */

.disclaimer-block {
  background: var(--color-neutral-light);
  border-left: 4px solid var(--color-accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.disclaimer-block strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-orange);
  margin-bottom: 6px;
}

/* ───── POPULAR FORMULAS GALLERY ───── */

.formula-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.formula-card {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.formula-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.formula-card-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

.formula-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.ftag {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--color-neutral-light);
  color: var(--color-text-muted);
  font-weight: 500;
}

.formula-mini-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fmb-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fmb-label {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  width: 72px;
  flex-shrink: 0;
}

.fmb-track {
  flex: 1;
  height: 4px;
  background: var(--color-neutral-light);
  border-radius: 2px;
  overflow: hidden;
}

.fmb-fill {
  height: 100%;
  border-radius: 2px;
}

.fmb-fill--orange { background: var(--color-accent-orange); }
.fmb-fill--blue { background: var(--color-accent-blue); }
.fmb-fill--green { background: var(--color-accent-green); }

/* ───── CONTACT ───── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-body);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-neutral-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-body);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-disclaimer {
  padding: 14px 16px;
  background: rgba(230,126,34,0.07);
  border-left: 3px solid var(--color-accent-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card {
  background: var(--color-bg-section);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.875rem;
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-blue);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-detail span {
  color: var(--color-text-muted);
  line-height: 1.5;
}

.map-placeholder {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52,73,94,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,73,94,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.map-pin svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-accent-blue);
  fill: rgba(52,152,219,0.12);
  stroke-width: 1.5;
}

.map-pin span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* ───── THANK YOU ───── */

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
}

.thankyou-block {
  text-align: center;
  max-width: 520px;
  padding: 64px 40px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(46,204,113,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 1.8;
}

.thankyou-divider {
  width: 48px;
  height: 2px;
  background: var(--color-neutral-mid);
  margin: 28px auto;
}

/* ───── POLICY PAGES ───── */

.policy-hero {
  background: var(--color-primary);
  padding: 80px 0 60px;
}

.policy-hero h1 { color: var(--color-white); }
.policy-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-neutral-light);
}

.policy-section:last-child { border-bottom: none; }

.policy-section h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.policy-section h3 {
  font-size: 1.05rem;
  margin: 22px 0 10px;
  color: var(--color-primary);
}

.policy-section p {
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.policy-section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.policy-section ul li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 7px;
  line-height: 1.65;
}

.policy-update {
  display: inline-block;
  background: var(--color-neutral-light);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* ───── ABOUT PAGE ───── */

.about-hero {
  background: var(--color-primary);
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(52,152,219,0.15) 0%, transparent 60%);
}

.about-hero .container { position: relative; z-index: 2; }
.about-hero h1 { color: var(--color-white); }
.about-hero p { color: rgba(255,255,255,0.72); max-width: 600px; margin-top: 16px; font-size: 1.05rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.value-card-num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-neutral-light);
  margin-bottom: 8px;
  line-height: 1;
}

.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: 0.86rem; }

/* ───── COOKIE BANNER ───── */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--color-primary-dark);
  border-top: 2px solid var(--color-accent-blue);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.btn-cookie--accept {
  background: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.btn-cookie--accept:hover { background: #27ae60; border-color: #27ae60; }

.btn-cookie--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.btn-cookie--decline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.btn-cookie--more {
  background: transparent;
  color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
}

.btn-cookie--more:hover {
  background: rgba(52,152,219,0.1);
}

/* ───── RESPONSIVE ───── */

@media (max-width: 1100px) {
  .konstruktor-layout {
    grid-template-columns: 1fr;
  }
  .flask-panel {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-cta-group { justify-content: center; }
  .hero-flask-area { display: none; }
  .panel-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .panel-two-col.reverse { direction: ltr; }
  .cards-row { grid-template-columns: repeat(2, 1fr); }
  .cards-row-3 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .formula-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table td, .comparison-table th { padding: 12px 14px; }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(44,62,80,0.98);
    padding: 16px 20px 20px;
    gap: 4px;
  }
  .header-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-row { grid-template-columns: 1fr; }
  .cards-row-3 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .formula-gallery { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-banner-inner { flex-direction: column; }
}

/* ───── BREADCRUMB ───── */

.breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--color-white); }

.breadcrumb span { margin: 0 6px; }

/* ───── CONTEXTUAL INFO BLOCK ───── */

.context-block {
  background: rgba(52,152,219,0.05);
  border: 1px solid rgba(52,152,219,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.context-block h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.context-block p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.context-block p:last-child { margin-bottom: 0; }

/* ───── HIGHLIGHT BOX ───── */

.highlight-box {
  position: relative;
  padding: 32px 36px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.highlight-box h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.highlight-box p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ───── UTILITIES ───── */

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.w-full { width: 100%; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

.divider {
  height: 1px;
  background: var(--color-neutral-light);
  margin: 48px 0;
}

/* ───── PAGE HERO (inner pages) ───── */

.page-hero {
  min-height: 340px;
  background: var(--color-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.page-hero--sm {
  min-height: 260px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(52,152,219,0.14) 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(46,204,113,0.08) 0%, transparent 45%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  max-width: 760px;
}

.page-hero-content h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
}

/* ───── POLICY PAGES ───── */

.policy-hero {
  background: var(--color-primary);
  padding: 110px 0 56px;
}

.policy-hero-content {
  position: relative;
}

.policy-hero-content h1 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.policy-hero-content p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
}

.policy-body {
  padding: 72px 0 96px;
  background: var(--color-bg-section);
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 88px;
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.policy-toc h3 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.policy-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-toc ul li a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: block;
  transition: color var(--transition), background var(--transition);
}

.policy-toc ul li a:hover {
  color: var(--color-accent-blue);
  background: rgba(52,152,219,0.06);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.policy-intro-box {
  background: var(--color-white);
  border-left: 4px solid var(--color-accent-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.policy-intro-box p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-text-body);
}

.policy-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 24px;
  border: 1px solid var(--color-neutral-light);
  box-shadow: var(--shadow-sm);
}

.policy-section h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-neutral-light);
}

.policy-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-highlight-box {
  background: var(--color-bg-section);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 16px 0;
}

.policy-highlight-box h3 {
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.policy-highlight-box p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.policy-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
}

.policy-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-accent-blue);
  font-weight: 700;
}

.policy-footer-note {
  text-align: center;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-neutral-light);
  margin-top: 16px;
}

.policy-footer-note p {
  font-size: 0.78rem;
  color: var(--color-neutral-dark);
}

/* ───── COOKIE POLICY SPECIFIC ───── */

.cookie-type-card {
  background: var(--color-bg-section);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.cookie-type-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.cookie-type-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-type-icon--green { background: rgba(46,204,113,0.1); }
.cookie-type-icon--blue { background: rgba(52,152,219,0.1); }

.cookie-type-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke-width: 1.8;
}

.cookie-type-icon--green svg { stroke: var(--color-accent-green); }
.cookie-type-icon--blue svg { stroke: var(--color-accent-blue); }

.cookie-type-header h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-badge--required {
  background: rgba(46,204,113,0.12);
  color: var(--color-accent-green);
}

.cookie-badge--optional {
  background: rgba(52,152,219,0.1);
  color: var(--color-accent-blue);
}

.cookie-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.cookie-detail-label {
  font-weight: 600;
  color: var(--color-text-body);
  min-width: 110px;
}

.browser-guide {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 16px;
}

.browser-guide h3 {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.browser-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.browser-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: var(--color-bg-section);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.browser-name {
  font-weight: 600;
  color: var(--color-text-body);
  min-width: 130px;
}

.browser-path {
  color: var(--color-text-muted);
}

/* ───── REFUND POLICY SPECIFIC ───── */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--color-neutral-light);
  margin: 16px 0;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 20px 0 20px 24px;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-blue);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent-blue);
}

.process-step-num {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ───── ABOUT PAGE SPECIFIC ───── */

.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-blue), var(--color-accent-green), var(--color-accent-orange), var(--color-primary));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -44px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-marker--blue {
  background: var(--color-accent-blue);
  box-shadow: 0 0 0 2px var(--color-accent-blue);
}

.timeline-marker--green {
  background: var(--color-accent-green);
  box-shadow: 0 0 0 2px var(--color-accent-green);
}

.timeline-marker--orange {
  background: var(--color-accent-orange);
  box-shadow: 0 0 0 2px var(--color-accent-orange);
}

.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.timeline-content {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-body);
}

.approach-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-check--green { background: rgba(46,204,113,0.12); }
.approach-check--red { background: rgba(231,76,60,0.1); }

.approach-check svg {
  width: 14px; height: 14px;
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.approach-check--green svg { stroke: var(--color-accent-green); }
.approach-check--red svg { stroke: #e74c3c; }

.approach-quote-card {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quote-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: var(--color-accent-blue);
}

.quote-line--green { background: var(--color-accent-green); }

.approach-quote-card blockquote p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-text-body);
  font-style: italic;
  margin-bottom: 12px;
}

.quote-source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.topic-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(52,73,94,0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.topic-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ───── CONTACT PAGE ───── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.contact-form-col h2 {
  margin-bottom: 0;
}

.form-disclaimer-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(230,126,34,0.07);
  border: 1px solid rgba(230,126,34,0.2);
  border-left: 4px solid var(--color-accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.form-disclaimer-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.form-disclaimer-icon svg {
  width: 22px; height: 22px;
  stroke: var(--color-accent-orange);
  fill: none;
  stroke-width: 1.8;
}

.form-disclaimer-box p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-body);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-body);
  background: var(--color-white);
  border: 1.5px solid var(--color-neutral-mid);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.12);
}

.form-textarea {
  min-height: 140px;
  line-height: 1.6;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding: 12px 0;
  border-top: 1px solid var(--color-neutral-light);
}

.form-note p { margin: 0; font-size: 0.78rem; }

.form-submit-btn {
  align-self: flex-start;
  cursor: pointer;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-sidebar-block {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-sidebar-block h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-neutral-light);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-detail-item:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(52,152,219,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--color-accent-blue);
  fill: none; stroke-width: 1.8;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.5;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: var(--color-bg-section);
  border-radius: var(--radius-sm);
}

.hours-day { color: var(--color-text-body); }
.hours-time { font-weight: 600; color: var(--color-primary); }

/* ───── STYLIZED MAP ───── */

.contact-map-block { }

.stylized-map {
  position: relative;
  height: 200px;
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-neutral-light);
}

.map-grid {
  position: absolute;
  inset: 0;
}

.map-street {
  position: absolute;
  background: rgba(255,255,255,0.8);
}

.map-street--h {
  left: 0; right: 0;
  height: 8px;
}

.map-street--v {
  top: 0; bottom: 0;
  width: 8px;
}

.map-block {
  position: absolute;
  background: rgba(52,73,94,0.1);
  border-radius: 3px;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
}

.map-pin svg {
  width: 28px; height: 28px;
  stroke: var(--color-accent-blue);
  fill: rgba(52,152,219,0.15);
  stroke-width: 1.8;
  filter: drop-shadow(0 2px 4px rgba(52,152,219,0.4));
}

.map-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(52,73,94,0.82);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ───── THANK-YOU PAGE ───── */

.thankyou-section {
  min-height: calc(100vh - 68px);
  background: var(--color-bg-section);
  padding-top: 68px;
  display: flex;
  align-items: center;
}

.thankyou-block {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

.thankyou-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.thankyou-icon svg {
  display: block;
}

.thankyou-block h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.thankyou-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.thankyou-divider {
  width: 64px;
  height: 2px;
  background: var(--color-neutral-mid);
  margin: 32px auto;
  border-radius: 2px;
}

.thankyou-note {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: rgba(52,73,94,0.04);
  border-radius: var(--radius-md);
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───── RESPONSIVE: NEW PAGES ───── */

@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
  .contact-layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .policy-toc {
    position: static;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .topics-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 32px;
  }
  .timeline-marker {
    left: -28px;
  }
  .page-hero-content {
    padding: 48px 0;
  }
  .policy-section {
    padding: 24px 20px;
  }
  .approach-quote-card {
    padding: 22px 22px 22px 26px;
  }
}
