:root {
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #5A4BD1;
  --secondary: #00CEC9;
  --secondary-dark: #00B4AE;
  --accent: #FDCB6E;
  --accent-dark: #E8B445;
  --dark: #0D0D1A;
  --dark-light: #1A1A2E;
  --dark-medium: #16213E;
  --light: #F5F5FA;
  --lighter: #EAEAF2;
  --white: #FFFFFF;
  --text: #2D3436;
  --text-light: #636E72;
  --text-lighter: #A0A8AB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1100px;
  --header-h: 60px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: 2.4rem;
  font-weight: 800;
}

h2 {
  font-size: 1.65rem;
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 0.8rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform var(--transition), background var(--transition);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--white);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header__nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--white);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__menu-btn {
  display: none;
  color: var(--white);
  font-size: 1.2rem;
  padding: 0.4rem;
  z-index: 10;
}

.header__gradient-line {
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay--active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
}

.nav-overlay__list {
  text-align: center;
}

.nav-overlay__list li {
  margin-bottom: 1.8rem;
}

.nav-overlay__list a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-overlay__list a:hover {
  color: var(--secondary);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark-medium) 100%);
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  overflow: hidden;
}

.hero__decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
}

.hero__decoration--1 {
  width: 420px;
  height: 420px;
  background: var(--primary);
  top: -120px;
  right: -80px;
}

.hero__decoration--2 {
  width: 320px;
  height: 320px;
  background: var(--secondary);
  bottom: -60px;
  left: -60px;
}

.hero__decoration--3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 45%;
  left: 55%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.25);
  color: var(--primary-light);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero__title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero--sub {
  min-height: 38vh;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 2rem;
}

.hero--sub .hero__title {
  font-size: 2.1rem;
}

.hero--sub .hero__subtitle {
  max-width: 520px;
}

.section {
  padding: 3.5rem 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--light {
  background: var(--light);
}

.section--gradient {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section--dark .section__label,
.section--gradient .section__label {
  color: var(--secondary);
}

.section__title {
  margin-bottom: 0.5rem;
}

.section--dark .section__title,
.section--gradient .section__title {
  color: var(--white);
}

.section__desc {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.88rem;
}

.section--dark .section__desc,
.section--gradient .section__desc {
  color: rgba(255,255,255,0.6);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(108, 92, 231, 0.15);
  pointer-events: none;
}

.intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.intro-content__title {
  margin-bottom: 0.7rem;
}

.intro-content__text {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-content__list {
  margin-bottom: 1.2rem;
}

.intro-content__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.intro-content__list li i {
  color: var(--secondary);
  font-size: 0.72rem;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--lighter);
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.workshop-card__header {
  padding: 1.1rem;
  color: var(--white);
}

.workshop-card__header--1 {
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
}

.workshop-card__header--2 {
  background: linear-gradient(135deg, var(--secondary), #0EA5E9);
}

.workshop-card__header--3 {
  background: linear-gradient(135deg, var(--accent-dark), #F97316);
}

.workshop-card__icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.workshop-card__title {
  color: var(--white);
  font-size: 1.05rem;
}

.workshop-card__body {
  padding: 1.1rem;
}

.workshop-card__price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.workshop-card__price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-body);
}

.workshop-card__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.workshop-card__features {
  margin-bottom: 1rem;
}

.workshop-card__feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.workshop-card__feature i {
  color: var(--secondary);
  font-size: 0.65rem;
}

.workshop-card__btn {
  display: block;
  text-align: center;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  transition: background var(--transition), color var(--transition);
  background: var(--primary);
  color: var(--white);
}

.workshop-card__btn:hover {
  background: var(--primary-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.benefit-card {
  text-align: center;
  padding: 1.3rem 0.8rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), background var(--transition);
}

.benefit-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.benefit-card__icon--1 {
  background: rgba(108,92,231,0.2);
  color: var(--primary-light);
}

.benefit-card__icon--2 {
  background: rgba(0,206,201,0.2);
  color: var(--secondary);
}

.benefit-card__icon--3 {
  background: rgba(253,203,110,0.2);
  color: var(--accent);
}

.benefit-card__icon--4 {
  background: rgba(162,155,254,0.2);
  color: var(--primary-light);
}

.benefit-card__title {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.benefit-card__text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
  line-height: 1.6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.2rem;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.process-step__title {
  margin-bottom: 0.35rem;
}

.process-step__text {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-medium) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.08;
  top: -100px;
  right: -80px;
  filter: blur(60px);
}

.cta-section__title {
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-section__text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  position: relative;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.8rem;
  background: var(--white);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.cta-section__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.subpage-grid--reverse {
  direction: rtl;
}

.subpage-grid--reverse > * {
  direction: ltr;
}

.subpage-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.subpage-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.subpage-text h2 {
  margin-bottom: 0.6rem;
}

.subpage-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.subpage-text ul {
  margin: 0.8rem 0;
}

.subpage-text ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.subpage-text ul li i {
  color: var(--secondary);
  font-size: 0.7rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.detail-card {
  padding: 1.2rem;
  background: var(--light);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition);
}

.detail-card:hover {
  transform: translateY(-2px);
}

.detail-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.detail-card__title {
  margin-bottom: 0.3rem;
}

.detail-card__text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.info-list {
  max-width: 700px;
  margin: 0 auto;
}

.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--lighter);
}

.info-list__item:last-child {
  border-bottom: none;
}

.info-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(108,92,231,0.1);
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-list__content h4 {
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}

.info-list__content p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.about-value {
  padding: 1.2rem;
  background: var(--light);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition);
}

.about-value:hover {
  transform: translateY(-2px);
}

.about-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.about-value__title {
  margin-bottom: 0.3rem;
}

.about-value__text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.about-stat {
  padding: 1rem;
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}

.about-stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--lighter);
}

.contact-form-wrap__title {
  margin-bottom: 0.3rem;
}

.contact-form-wrap__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.contact-form__group {
  margin-bottom: 0.9rem;
}

.contact-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--lighter);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  transition: border-color var(--transition), background var(--transition);
  background: var(--light);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.contact-form__textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-form__checkbox-wrap input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.contact-form__checkbox-wrap label {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-form__checkbox-wrap a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  background: var(--light);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-info-card__text h4 {
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

.contact-info-card__text p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
}

.contact-faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--lighter);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.faq-item__answer {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 1.3rem 0;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.2rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.footer__address {
  font-size: 0.72rem;
  margin-bottom: 0.7rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.footer__links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--secondary);
}

.footer__copyright {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-light);
  padding: 0.9rem 1rem;
  z-index: 3000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cookie-popup--hidden {
  transform: translateY(100%);
}

.cookie-popup__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-popup__text {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-popup__text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-popup__btns {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.cookie-popup__btn {
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.cookie-popup__btn--accept {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-popup__btn--accept:hover {
  background: var(--secondary-dark);
}

.cookie-popup__btn--decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.cookie-popup__btn--decline:hover {
  background: rgba(255,255,255,0.18);
}

.page-standalone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 90px);
  padding: calc(var(--header-h) + 2rem) 1.2rem 2rem;
  text-align: center;
}

.page-standalone__inner {
  max-width: 460px;
}

.page-standalone__icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-standalone__title {
  margin-bottom: 0.5rem;
}

.page-standalone__text {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 1.3rem;
  line-height: 1.7;
}

.policy-page {
  padding: calc(var(--header-h) + 2rem) 0 3rem;
}

.policy-page .container {
  max-width: 800px;
}

.policy-page__title {
  margin-bottom: 0.4rem;
}

.policy-page__date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}

.policy-content p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.75;
}

.policy-content ul {
  margin: 0.5rem 0 0.8rem 1.2rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  line-height: 1.65;
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .header__nav {
    display: none;
  }

  .header__menu-btn {
    display: block;
  }

  .workshops-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .subpage-grid--reverse {
    direction: ltr;
  }

  .about-values {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 52px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero--sub {
    min-height: 30vh;
  }

  .section {
    padding: 2.5rem 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .cookie-popup__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .hero--sub .hero__title {
    font-size: 1.2rem;
  }

  .workshop-card__price {
    font-size: 1.5rem;
  }

  .hero__badge {
    font-size: 0.68rem;
  }

  .nav-overlay__list a {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .header__logo-text {
    font-size: 0.82rem;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}
