:root {
  --candy-pink: #f472b6;
  --candy-purple: #a855f7;
  --candy-blue: #60a5fa;
  --candy-teal: #2dd4bf;
  --candy-peach: #fb923c;
  --candy-lavender: #c084fc;

  --grad-main: linear-gradient(135deg, #f472b6 0%, #a855f7 40%, #60a5fa 100%);
  --grad-hero: linear-gradient(160deg, #fdf2f8 0%, #ede9fe 50%, #dbeafe 100%);
  --grad-card-pink: linear-gradient(135deg, #fdf2f8, #fce7f3);
  --grad-card-blue: linear-gradient(135deg, #eff6ff, #dbeafe);
  --grad-card-purple: linear-gradient(135deg, #faf5ff, #ede9fe);
  --grad-card-teal: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  --grad-card-peach: linear-gradient(135deg, #fff7ed, #ffedd5);
  --grad-card-lavender: linear-gradient(135deg, #faf5ff, #f3e8ff);

  --text-dark: #1e1b2e;
  --text-mid: #4a4565;
  --text-light: #7c7a9a;
  --bg-cream: #faf9ff;
  --bg-white: #ffffff;
  --border-soft: rgba(168, 85, 247, 0.12);

  --shadow-sm: 0 2px 8px rgba(168,85,247,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(168,85,247,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 48px rgba(168,85,247,0.15), 0 8px 16px rgba(0,0,0,0.08);
  --shadow-candy: 0 8px 32px rgba(244,114,182,0.2), 0 2px 8px rgba(168,85,247,0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.bg-cream { background-color: var(--bg-cream); }


.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #fce7f3 0%, #e9d5ff 50%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn-candy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grad-main);
  color: #fff;
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-candy);
  white-space: nowrap;
  text-decoration: none;
}
.btn-candy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244,114,182,0.35), 0 4px 12px rgba(168,85,247,0.25);
  filter: brightness(1.05);
}
.btn-candy:active { transform: translateY(0); }

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--candy-purple);
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--candy-purple);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--candy-purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-sm:hover {
  border-color: var(--candy-purple);
  color: var(--candy-purple);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--candy-purple); background: rgba(168,85,247,0.06); }


.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--candy-purple);
  background: rgba(168,85,247,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-label.light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}


.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img { height: 40px; width: auto; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger:hover { background: rgba(168,85,247,0.08); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,27,46,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--bg-white);
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(168,85,247,0.15);
}
.nav-panel.open { transform: translateX(0); }

.nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(168,85,247,0.08);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-close:hover { background: rgba(168,85,247,0.15); color: var(--candy-purple); }

.nav-links {
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  font-family: 'Gabarito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--candy-purple);
  background: rgba(168,85,247,0.08);
}

.nav-cta { margin-top: var(--space-md); width: 100%; }


.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-pattern {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(244,114,182,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96,165,250,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(168,85,247,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}


.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(168,85,247,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

.hero-content { padding-right: var(--space-md); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168,85,247,0.1);
  color: var(--candy-purple);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(168,85,247,0.2);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg-white);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.tag i { color: var(--candy-purple); font-size: 0.75rem; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-family: 'Gabarito', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
}
.hero-float-card i {
  color: var(--candy-purple);
  font-size: 1.2rem;
}


.section-services {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.section-services .container {
  text-align: center;
}
.section-services .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
  margin-top: var(--space-lg);
  text-align: left;
}

.masonry-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}
.masonry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-pink { background: var(--grad-card-pink); border-color: rgba(244,114,182,0.15); }
.card-blue { background: var(--grad-card-blue); border-color: rgba(96,165,250,0.15); }
.card-purple { background: var(--grad-card-purple); border-color: rgba(168,85,247,0.15); }
.card-teal { background: var(--grad-card-teal); border-color: rgba(45,212,191,0.15); }
.card-peach { background: var(--grad-card-peach); border-color: rgba(251,146,60,0.15); }
.card-lavender { background: var(--grad-card-lavender); border-color: rgba(192,132,252,0.15); }

.card-tall { grid-row: span 2; }

.card-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--grad-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-candy);
}

.masonry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.masonry-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
}


.section-process {
  padding: var(--space-2xl) 0;
  background: var(--grad-hero);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  margin-top: var(--space-lg);
}

.process-step {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--candy-purple);
  font-size: 1.25rem;
  opacity: 0.5;
  margin-top: 2rem;
}


.section-gallery {
  padding: var(--space-2xl) 0;
  background: var(--bg-cream);
}

.slide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.slide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.slide-info {
  padding: 1.25rem;
}

.slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--candy-purple);
  background: rgba(168,85,247,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.slide-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.splide__pagination__page.is-active { background: var(--candy-purple); }
.splide__arrow { background: var(--bg-white); box-shadow: var(--shadow-md); }
.splide__arrow svg { fill: var(--candy-purple); }


.section-timeline {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.timeline {
  position: relative;
  margin-top: var(--space-xl);
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--candy-pink), var(--candy-purple), var(--candy-blue), var(--candy-teal));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 0 4px rgba(168,85,247,0.15);
  transition: var(--transition);
}
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 8px rgba(168,85,247,0.1);
}

.timeline-year {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 0.15rem;
}

.timeline-content {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.section-faq {
  padding: var(--space-2xl) 0;
  background: var(--grad-hero);
}

.faq-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Gabarito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  min-height: 44px;
}
.faq-question:hover { color: var(--candy-purple); }

.faq-icon {
  color: var(--candy-purple);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}


.section-kaspi {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.kaspi-card {
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.kaspi-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.kaspi-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.kaspi-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.kaspi-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.kaspi-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}


.section-tips {
  padding: var(--space-2xl) 0;
  background: var(--bg-cream);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.tip-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-date {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.tip-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.tip-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--candy-purple);
  transition: var(--transition);
}
.tip-link:hover { gap: 0.7rem; color: var(--candy-pink); }
.tip-link i { font-size: 0.75rem; }


.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
}

.footer-top { padding: var(--space-2xl) 0 var(--space-xl); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}

.footer-logo { filter: brightness(10); margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
}

.footer-brand address {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255,255,255,0.6);
}
.footer-brand address i { color: var(--candy-pink); margin-right: 0.5rem; width: 14px; }
.footer-brand address a { color: rgba(255,255,255,0.75); }
.footer-brand address a:hover { color: var(--candy-pink); }

.footer-col h4 {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--candy-pink); padding-left: 4px; }

.footer-post {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.fp-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.35rem;
}

.footer-post a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  transition: var(--transition);
}
.footer-post a:hover { color: var(--candy-pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--candy-pink); }


.page-hero {
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.page-hero-sm { padding-bottom: var(--space-xl); }

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(168,85,247,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 580px;
}


.section-spec-detail { padding: var(--space-2xl) 0; }

.spec-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.spec-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.spec-item-wide {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.spec-item-reverse { direction: rtl; }
.spec-item-reverse > * { direction: ltr; }

.spec-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.spec-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.spec-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-candy);
}

.spec-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.spec-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.spec-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
}
.spec-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-main);
}


.section-materials { padding: var(--space-2xl) 0; }

.materials-intro {
  margin-bottom: var(--space-xl);
  max-width: 640px;
}
.materials-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.materials-intro p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.material-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(168,85,247,0.25);
}

.material-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-candy);
}

.material-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.material-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.section-approach {
  padding: var(--space-2xl) 0;
  background: var(--grad-hero);
}

.approach-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.approach-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.approach-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.approach-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.approach-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}


.section-auto { padding: var(--space-2xl) 0; }

.auto-intro {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}
.auto-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.auto-intro p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.auto-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.auto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.auto-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-candy);
}

.auto-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.auto-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.section-auto-tips {
  padding: var(--space-2xl) 0;
  background: var(--grad-hero);
}

.auto-tips-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.auto-tips-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.auto-tips-card > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
}

.auto-tips-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auto-tip {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.auto-tip > i {
  color: var(--candy-teal);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auto-tip h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.auto-tip p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.section-auto-cta {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.auto-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.auto-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.auto-cta-inner p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}


.section-contact { padding: var(--space-2xl) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  height: 100%;
}

.contact-info-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(168,85,247,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--candy-purple);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-detail:hover .contact-detail-icon {
  background: var(--grad-main);
  color: white;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-detail a { color: var(--candy-purple); }
.contact-detail a:hover { color: var(--candy-pink); }

.contact-kaspi-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(168,85,247,0.06);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(168,85,247,0.12);
  margin-top: 1rem;
}
.contact-kaspi-note i {
  color: var(--candy-purple);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-kaspi-note p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-cream);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--candy-purple);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}
.form-input::placeholder { color: var(--text-light); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group { display: flex; align-items: flex-start; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--candy-purple);
  cursor: pointer;
}

.form-checkbox-label a { color: var(--candy-purple); }
.form-checkbox-label a:hover { color: var(--candy-pink); }

.map-section { margin-top: var(--space-2xl); }
.map-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 1.5rem; }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }


.thanks-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.thanks-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.thanks-icon {
  font-size: 4rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.thanks-card h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.thanks-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.thanks-card a { color: var(--candy-purple); }
.thanks-card a:hover { color: var(--candy-pink); }

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}


.section-legal { padding: var(--space-2xl) 0; }

.legal-content {
  max-width: 800px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.legal-content a { color: var(--candy-purple); }
.legal-content a:hover { color: var(--candy-pink); }


.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 2rem));
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  z-index: 9000;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.cookie-text p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30,27,46,0.6);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal-inner {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-inner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}
.cookie-category:last-of-type { border-bottom: none; }

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.35rem;
}
.cookie-category label input { accent-color: var(--candy-purple); }
.cookie-category p { font-size: 0.82rem; color: var(--text-mid); padding-left: 1.75rem; }

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}


@media (max-width: 1100px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(80px + var(--space-lg));
    gap: var(--space-lg);
  }
  .hero-content { padding-right: 0; }
  .hero-img { height: 320px; }
  .hero-float-card { left: 1rem; bottom: 1rem; }

  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .card-tall { grid-row: span 1; }
  .card-img { height: 140px; }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .process-arrow { display: none; }

  .kaspi-card { grid-template-columns: 1fr; }
  .kaspi-img { height: 220px; }

  .tips-grid { grid-template-columns: 1fr; }

  .spec-item-wide { grid-template-columns: 1fr; }
  .spec-item-reverse { direction: ltr; }
  .spec-img-wrap img { height: 260px; }

  .contact-grid { grid-template-columns: 1fr; }
  .approach-card { grid-template-columns: 1fr; }
  .approach-img img { height: 220px; }

  .auto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .masonry-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn-candy, .hero-actions .btn-outline { width: 100%; justify-content: center; }

  .kaspi-card { padding: var(--space-lg); }
  .contact-form-card, .contact-info-card { padding: var(--space-md); }
  .legal-content { padding: var(--space-md); }
  .thanks-card { padding: var(--space-lg); }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .timeline { padding-left: 2rem; }
  .timeline-item { grid-template-columns: 60px 1fr; }

  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn-candy, .thanks-actions .btn-outline { width: 100%; justify-content: center; }
}