@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --rose: #ff8fab;
  --rose-light: #ffc2d4;
  --rose-deep: #e8709a;
  --violet: #a78bfa;
  --violet-light: #c4b5fd;
  --violet-deep: #8b6fdb;
  --mint: #6ee7b7;
  --mint-light: #a7f3d0;
  --mint-deep: #34d399;
  --clay-bg: #fef7f4;
  --clay-surface: #fff5f0;
  --clay-card: #ffffff;
  --text-main: #3d2c4e;
  --text-body: #5a4a6b;
  --text-muted: #8b7a9e;
  --shadow-clay: 6px 6px 0px rgba(61, 44, 78, 0.12);
  --shadow-clay-lg: 10px 10px 0px rgba(61, 44, 78, 0.10);
  --inset-hl: inset 2px 2px 4px rgba(255,255,255,0.7);
  --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --radius-pill: 999px;
  --radius-soft: 24px;
  --radius-card: 28px;
  --ease-clay: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--clay-bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--text-main);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--ease-clay); }
img { max-width: 100%; height: auto; display: block; }

.clay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--ease-clay);
  box-shadow: var(--shadow-clay), var(--inset-hl);
}

.clay-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.clay-btn-rose { background: var(--rose); color: #fff; }
.clay-btn-rose:hover {
  background: var(--rose-deep);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(61,44,78,0.14), var(--inset-hl);
}

.clay-btn-violet { background: var(--violet); color: #fff; }
.clay-btn-violet:hover {
  background: var(--violet-deep);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(61,44,78,0.14), var(--inset-hl);
}

.clay-btn-mint { background: var(--mint); color: var(--text-main); }
.clay-btn-mint:hover {
  background: var(--mint-deep);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(61,44,78,0.14), var(--inset-hl);
}

.clay-btn-ghost {
  background: transparent;
  color: var(--text-main);
  box-shadow: none;
  border: 2px solid var(--rose-light);
}
.clay-btn-ghost:hover {
  background: var(--rose-light);
  box-shadow: var(--shadow-clay), var(--inset-hl);
}

.clay-btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.clay-btn-full { width: 100%; justify-content: center; }

.clay-card {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  padding: 36px;
  transition: var(--ease-clay);
}

.clay-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0px rgba(61,44,78,0.10), var(--inset-hl);
}

.clay-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 3px 3px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.tag-rose { background: var(--rose-light); color: var(--text-main); }
.tag-violet { background: var(--violet-light); color: var(--text-main); }
.tag-mint { background: var(--mint-light); color: var(--text-main); }

.bg-rose { background: var(--rose); }
.bg-rose-light { background: var(--rose-light); }
.bg-rose-deep { background: var(--rose-deep); }
.bg-violet { background: var(--violet); }
.bg-violet-light { background: var(--violet-light); }
.bg-mint { background: var(--mint-light); }
.bg-mint-deep { background: var(--mint-deep); }

.stroke-rose { stroke: var(--rose-deep); }
.stroke-violet { stroke: var(--violet-deep); }
.stroke-mint { stroke: var(--mint-deep); }
.stroke-rose-fill { fill: var(--rose); stroke: none; }

.link-accent { color: var(--violet); font-weight: 700; }
.link-accent:hover { color: var(--violet-deep); }

.site-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(254, 247, 244, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: var(--ease-clay);
}

.nav-bar.scrolled { box-shadow: 0 4px 20px rgba(61,44,78,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo span {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text-main);
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--clay-card);
  padding: 6px;
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0px rgba(61,44,78,0.06), var(--inset-hl);
}

.nav-pills a {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--ease-clay);
}

.nav-pills a:hover { background: var(--rose-light); color: var(--text-main); box-shadow: var(--inset-hl); }
.nav-pills a.active { background: var(--rose); color: #fff; box-shadow: 3px 3px 0px rgba(61,44,78,0.1), var(--inset-hl); }

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--clay-card);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(61,44,78,0.06), var(--inset-hl);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--ease-clay);
}

.hero-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--mint-light);
  color: var(--text-main);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: 4px 4px 0px rgba(61,44,78,0.08), var(--inset-hl);
  animation: floatSoft 4s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .accent-rose { color: var(--rose); }
.hero-title .accent-violet { color: var(--violet); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  animation: morphBlob 12s ease-in-out infinite;
}

.hero-img-wrap img { width: 100%; height: 460px; object-fit: cover; }

.hero-float-card {
  position: absolute;
  background: var(--clay-card);
  border-radius: 22px;
  padding: 16px 22px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  font-weight: 700;
  font-size: 0.9rem;
  animation: floatSoft 5s ease-in-out infinite;
}

.hero-float-card.card-a { bottom: -20px; left: -30px; background: var(--rose-light); }
.hero-float-card.card-b { top: 30px; right: -20px; background: var(--mint-light); animation-delay: 1.5s; }

.hero-bg-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
  animation: driftBlob 18s ease-in-out infinite alternate;
}

.hero-bg-blob.blob-rose { width: 400px; height: 400px; background: var(--rose); top: 10%; right: -5%; }
.hero-bg-blob.blob-violet { width: 300px; height: 300px; background: var(--violet); bottom: 5%; left: 10%; animation-delay: 4s; }
.hero-bg-blob.blob-mint { width: 250px; height: 250px; background: var(--mint); top: 60%; right: 30%; animation-delay: 8s; }

.sect-pad { padding: 100px 0; }
.sect-pad-lg { padding: 130px 0; }

.sect-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 16px;
}

.sect-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--violet);
  border-radius: 2px;
}

.sect-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.sect-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.history-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 80px;
  align-items: center;
}

.history-img-stack { position: relative; height: 480px; }

.history-img-stack .img-main {
  width: 85%;
  height: 380px;
  object-fit: cover;
  border-radius: 38% 62% 48% 52% / 42% 58% 42% 58%;
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  position: relative;
  z-index: 1;
}

.history-img-stack .img-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 5px solid var(--clay-bg);
}

.history-text p { margin-bottom: 18px; font-size: 1.05rem; }

.howto-section {
  background: var(--clay-surface);
  position: relative;
  overflow: hidden;
}

.howto-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-blob);
  background: var(--mint);
  opacity: 0.07;
  top: -100px;
  right: -100px;
  filter: blur(60px);
}

.howto-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}

.howto-step {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  transition: var(--ease-clay);
}

.howto-step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0px rgba(61,44,78,0.1), var(--inset-hl);
}

.howto-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 3px 3px 0px rgba(61,44,78,0.1), var(--inset-hl);
}

.howto-step:nth-child(1) .step-num { background: var(--rose); }
.howto-step:nth-child(2) .step-num { background: var(--violet); }
.howto-step:nth-child(3) .step-num { background: var(--mint-deep); }
.howto-step:nth-child(4) .step-num { background: var(--rose-deep); }

.howto-step h4 { font-size: 1.15rem; margin-bottom: 10px; }
.howto-step p { font-size: 0.95rem; color: var(--text-muted); }

.rules-box {
  margin-top: 40px;
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  border-left: 5px solid var(--violet);
}

.rules-box h4 { font-size: 1.1rem; margin-bottom: 14px; color: var(--violet-deep); }

.rules-box ul { list-style: none; padding: 0; }
.rules-box ul li { padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem; }

.rules-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 2px 2px 0px rgba(61,44,78,0.1), var(--inset-hl);
}

.rules-box ul li:nth-child(odd)::before { background: var(--rose-light); }
.rules-box ul li:nth-child(even)::before { background: var(--mint-light); }

.responsible-block {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--rose-light) 100%);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
}

.responsible-block h4 { font-size: 1.15rem; margin-bottom: 14px; color: var(--text-main); }
.responsible-block p { font-size: 0.95rem; line-height: 1.8; color: var(--text-main); opacity: 0.85; }

.mission-layout {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 70px;
  align-items: center;
}

.mission-text h2 { margin-bottom: 24px; }
.mission-text p { font-size: 1.05rem; margin-bottom: 16px; }

.mission-visual { position: relative; }
.mission-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 52% 48% 40% 60% / 45% 55% 45% 55%;
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
}

.reviews-section { background: var(--clay-surface); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}

.review-card {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  transition: var(--ease-clay);
  position: relative;
}

.review-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: 'Nunito', sans-serif;
  line-height: 1;
  opacity: 0.08;
  color: var(--text-main);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; }

.review-text { font-size: 0.95rem; line-height: 1.75; margin-bottom: 18px; color: var(--text-body); }

.review-author { display: flex; align-items: center; gap: 12px; }

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 3px 3px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.review-author-info strong { display: block; font-size: 0.92rem; color: var(--text-main); }
.review-author-info span { font-size: 0.8rem; color: var(--text-muted); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 50px;
}

.blog-card {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  transition: var(--ease-clay);
}

.blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.blog-card-img { width: 100%; height: 220px; object-fit: cover; }

.blog-card-body { padding: 28px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.blog-card-meta { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

.blog-stack { display: flex; flex-direction: column; gap: 28px; }

.blog-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  background: var(--clay-card);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  transition: var(--ease-clay);
  align-items: center;
}

.blog-mini:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.blog-mini img { width: 110px; height: 80px; object-fit: cover; border-radius: 14px; }
.blog-mini h4 { font-size: 0.95rem; line-height: 1.35; margin-bottom: 6px; }
.blog-mini span { font-size: 0.78rem; color: var(--text-muted); }

.services-section { background: var(--clay-surface); }

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.service-item {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  transition: var(--ease-clay);
}

.service-item:hover {
  transform: translate(-2px, -4px);
  box-shadow: 10px 12px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.service-icon svg { width: 28px; height: 28px; }

.service-item h4 { font-size: 1rem; margin-bottom: 10px; }
.service-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  max-width: 800px;
}

.team-card {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  transition: var(--ease-clay);
}

.team-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0px rgba(61,44,78,0.1), var(--inset-hl);
}

.team-card-photo { width: 100%; height: 260px; object-fit: cover; }

.team-card-body { padding: 28px; }
.team-card-body h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card-body .team-role { font-size: 0.85rem; color: var(--rose); font-weight: 700; margin-bottom: 12px; }
.team-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.faq-section { background: var(--clay-surface); }

.faq-layout {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

.faq-sidebar { position: sticky; top: 120px; }
.faq-sidebar p { font-size: 1.05rem; color: var(--text-muted); margin-top: 16px; line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--clay-card);
  border-radius: 22px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  overflow: hidden;
  transition: var(--ease-clay);
}

.faq-item.open { box-shadow: 8px 8px 0px rgba(61,44,78,0.1), var(--inset-hl); }

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  user-select: none;
  transition: var(--ease-clay);
}

.faq-question:hover { background: rgba(167, 139, 250, 0.06); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet-light);
  box-shadow: 2px 2px 0px rgba(61,44,78,0.06), var(--inset-hl);
  flex-shrink: 0;
  transition: var(--ease-clay);
}

.faq-item.open .faq-toggle { background: var(--violet); transform: rotate(45deg); }

.faq-toggle svg { width: 16px; height: 16px; stroke: var(--text-main); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-toggle svg { stroke: #fff; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner { padding: 0 28px 22px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer-inner a { color: var(--violet); font-weight: 600; }

.site-footer {
  background: var(--text-main);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(10); object-fit: contain }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer-col h5 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--ease-clay); }
.footer-col ul li a:hover { color: var(--rose-light); padding-left: 4px; }

.footer-responsible {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-resp-text {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 24px 30px;
  margin-bottom: 28px;
}

.footer-resp-text p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.55); }
.footer-resp-text strong { color: var(--rose-light); }

.footer-regulators { display: flex; align-items: center; gap: 24px; }
.footer-regulators a { display: flex; align-items: center; opacity: 0.5; transition: var(--ease-clay); }
.footer-regulators a:hover { opacity: 1; }
.footer-regulators img { height: 36px; filter: brightness(0) invert(1); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--rose-light); }

.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,44,78,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.age-popup-overlay.hidden { opacity: 0; pointer-events: none; }

.age-popup {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 48px 44px;
  text-align: center;
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  max-width: 400px;
  width: 90%;
  animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--rose);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 0px rgba(61,44,78,0.12), var(--inset-hl);
}

.age-icon svg { width: 44px; height: 44px; fill: #fff; }

.age-popup h3 { font-size: 1.5rem; margin-bottom: 10px; }
.age-popup p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

.cookies-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  max-width: 420px;
  width: calc(100% - 48px);
  animation: slideUpIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookies-bar.hidden { display: none; }
.cookies-bar h4 { font-size: 1.05rem; margin-bottom: 10px; }
.cookies-bar p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 6px; }

.cookies-links { margin-bottom: 18px; }
.cookies-links a { font-size: 0.82rem; color: var(--violet); font-weight: 600; margin-right: 14px; }
.cookies-links a:hover { color: var(--violet-deep); }

.cookies-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.inner-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-blob);
  background: var(--rose);
  opacity: 0.08;
  top: -150px;
  right: -100px;
  filter: blur(80px);
  pointer-events: none;
}

.inner-hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: var(--radius-blob);
  background: var(--violet);
  opacity: 0.06;
  bottom: -80px;
  left: -60px;
  filter: blur(60px);
  pointer-events: none;
}

.inner-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 14px;
}

.inner-hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--violet);
  border-radius: 2px;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.inner-hero .inner-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

.legal-content { padding: 0 0 100px; }
.legal-body { max-width: 780px; }

.legal-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-main);
  position: relative;
  padding-left: 20px;
}

.legal-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--rose);
}

.legal-body h3 { font-size: 1.1rem; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }

.legal-body p { margin-bottom: 16px; font-size: 0.98rem; line-height: 1.85; color: var(--text-body); }

.legal-body ul { list-style: none; padding: 0; margin-bottom: 18px; }

.legal-body ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint-light);
  box-shadow: 2px 2px 0px rgba(61,44,78,0.06);
}

.legal-body .highlight-box {
  background: var(--clay-card);
  border-radius: 20px;
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  border-left: 4px solid var(--violet);
}

.legal-body .highlight-box p { margin-bottom: 0; font-weight: 600; color: var(--text-main); }

.legal-body .contact-line {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--mint-light);
  border-radius: 18px;
  box-shadow: 3px 3px 0px rgba(61,44,78,0.06), var(--inset-hl);
}

.legal-body .contact-line a { color: var(--violet-deep); font-weight: 700; }
.legal-updated { margin-top: 40px; font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

.faq-full-list { max-width: 820px; }

.faq-section-block { margin-bottom: 50px; }
.faq-section-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--rose);
}

.game-page-wrap {
  padding: 100px 0 60px;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

.game-page-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(110,231,183,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,143,171,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(167,139,250,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.game-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.slot-container {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-clay-lg), var(--inset-hl);
  padding: 32px;
}

.slot-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.slot-header h2 { font-size: 1.4rem; font-weight: 900; }

.slot-points-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mint-light);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 3px 3px 0px rgba(61,44,78,0.06), var(--inset-hl);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
}

.slot-points-display svg { width: 20px; height: 20px; }

.slot-board {
  background: var(--clay-surface);
  border-radius: 22px;
  padding: 18px;
  box-shadow: inset 4px 4px 10px rgba(61,44,78,0.06), inset -2px -2px 6px rgba(255,255,255,0.5);
  margin-bottom: 24px;
  overflow: hidden;
}

.slot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.slot-reel { display: flex; flex-direction: column; gap: 8px; }

.slot-cell {
  aspect-ratio: 1;
  background: var(--clay-card);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0px rgba(61,44,78,0.06), var(--inset-hl);
  padding: 10px;
  transition: var(--ease-clay);
  overflow: hidden;
}

.slot-cell img { width: 80%; height: 80%; object-fit: contain; transition: transform 0.3s ease; }

.slot-cell.spinning { animation: cellSpin 0.15s linear infinite; }

.slot-cell.winner {
  box-shadow: 0 0 0 3px var(--rose), 4px 4px 0px rgba(61,44,78,0.1), var(--inset-hl);
  background: var(--rose-light);
}

.slot-cell.winner img { transform: scale(1.1); }

.slot-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.bet-control {
  display: flex;
  align-items: center;
  background: var(--clay-card);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0px rgba(61,44,78,0.06), var(--inset-hl);
  overflow: hidden;
}

.bet-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-main);
  transition: var(--ease-clay);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bet-control button:hover { background: var(--rose-light); }
.bet-control button:active { transform: scale(0.92); }

.bet-value {
  padding: 0 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
  min-width: 60px;
  text-align: center;
  border-left: 2px solid var(--clay-surface);
  border-right: 2px solid var(--clay-surface);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bet-presets { display: flex; gap: 6px; }

.bet-presets button {
  padding: 8px 16px;
  border: 2px solid var(--violet-light);
  background: transparent;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--ease-clay);
}

.bet-presets button:hover,
.bet-presets button.active {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  box-shadow: 3px 3px 0px rgba(61,44,78,0.08);
}

.bet-presets button:active { transform: scale(0.95); }

.spin-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--rose);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--shadow-clay), var(--inset-hl);
  transition: var(--ease-clay);
  letter-spacing: 0.02em;
}

.spin-btn:hover {
  background: var(--rose-deep);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(61,44,78,0.12), var(--inset-hl);
}

.spin-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(61,44,78,0.08), var(--inset-hl);
}

.spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.slot-result {
  margin-top: 20px;
  padding: 16px 22px;
  border-radius: 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  transition: var(--ease-clay);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-result.positive { background: var(--mint-light); color: var(--text-main); box-shadow: 4px 4px 0px rgba(61,44,78,0.06), var(--inset-hl); animation: resultPop 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.slot-result.negative { background: var(--clay-surface); color: var(--text-muted); }
.slot-result.idle { background: var(--clay-surface); color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }

.game-sidebar { display: flex; flex-direction: column; gap: 20px; }

.game-info-card {
  background: var(--clay-card);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: var(--shadow-clay), var(--inset-hl);
}

.game-info-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.game-info-card h3 svg { width: 18px; height: 18px; }

.game-rules-mini p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.game-rules-mini ul { list-style: none; padding: 0; }

.game-rules-mini ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.game-rules-mini ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-light);
  box-shadow: 1px 1px 0px rgba(61,44,78,0.06);
}

.paytable-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 6px 12px; align-items: center; }

.paytable-grid .pt-symbol {
  width: 32px;
  height: 32px;
  background: var(--clay-surface);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 2px 2px 0px rgba(61,44,78,0.04), var(--inset-hl);
}

.paytable-grid .pt-symbol img { width: 100%; height: 100%; object-fit: contain; }
.paytable-grid .pt-name { font-size: 0.82rem; font-weight: 600; color: var(--text-body); }
.paytable-grid .pt-mult { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--rose-deep); text-align: right; }

.game-stats-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--clay-surface); font-size: 0.85rem; }
.game-stats-row:last-child { border-bottom: none; }
.game-stats-row span:first-child { color: var(--text-muted); }
.game-stats-row span:last-child { font-weight: 700; color: var(--text-main); }

@keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes morphBlob { 0% { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; } 33% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; } 66% { border-radius: 45% 55% 60% 40% / 55% 45% 45% 55%; } 100% { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; } }
@keyframes driftBlob { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, -30px) scale(1.15); } }
@keyframes popIn { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes slideUpIn { 0% { transform: translateY(40px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes cellSpin { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
@keyframes resultPop { 0% { transform: scale(0.9); } 60% { transform: scale(1.04); } 100% { transform: scale(1); } }

.anim-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .history-layout, .mission-layout { grid-template-columns: 1fr; gap: 40px; }
  .history-img-stack { height: 360px; max-width: 500px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-sidebar { position: static; }
  .game-layout { grid-template-columns: 1fr; }
  .game-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-pills {
    display: none;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: var(--clay-card);
    padding: 16px;
    border-radius: 22px;
    box-shadow: var(--shadow-clay-lg), var(--inset-hl);
    z-index: 200;
  }
  .nav-pills.open { display: flex; }
  .nav-pills a { width: 100%; text-align: center; }
  .nav-mobile-toggle { display: flex; }
  .hero-section { min-height: auto; padding-top: 120px; padding-bottom: 50px; }
  .hero-title { font-size: 2.2rem; }
  .hero-float-card { display: none; }
  .hero-img-wrap img { height: 300px; }
  .sect-pad { padding: 60px 0; }
  .sect-pad-lg { padding: 80px 0; }
  .howto-steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .team-layout { grid-template-columns: 1fr; max-width: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-regulators { flex-wrap: wrap; justify-content: center; }
  .cookies-bar { bottom: 12px; left: 12px; max-width: calc(100% - 24px); padding: 22px; }
  .age-popup { padding: 36px 28px; }
  .inner-hero { padding: 120px 0 40px; }
  .slot-container { padding: 20px; }
  .slot-controls { flex-direction: column; }
  .spin-btn { width: 100%; }
  .bet-presets { flex-wrap: wrap; width: 100%; justify-content: center; }
  .game-sidebar { grid-template-columns: 1fr; }
  .slot-cell { border-radius: 10px; padding: 6px; }
  .slot-grid { gap: 5px; }
  .slot-board { padding: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .sect-heading { font-size: 1.65rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .clay-btn { width: 100%; justify-content: center; }
  .hero-bg-blob { display: none; }
  .cookies-actions { flex-direction: column; }
  .cookies-actions .clay-btn { width: 100%; justify-content: center; }
  .blog-mini { grid-template-columns: 1fr; }
  .blog-mini img { width: 100%; height: 140px; }
  .slot-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .bet-control { width: 100%; justify-content: center; }
}
