@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --pearl-white: #FAF8F5;
  --ivory-cream: #F8F5F0;
  --deep-espresso: #2D2926;
  --warm-taupe: #6B5B54;
  --muted-mauve: #A89888;
  --dusk-rose: #C48B7F;
  --dusk-rose-dark: #B47D6F;
  --sage-whisper: #7D9A78;
  --font-fraunces: 'Fraunces', serif;
  --font-satoshi: 'Satoshi', sans-serif;
  --font-jetbrains: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-satoshi);
  font-size: 16px;
  line-height: 1.75;
  color: var(--warm-taupe);
  background-color: var(--pearl-white);
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  margin-left: 72px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0 100px;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-fraunces);
  color: var(--deep-espresso);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 18px;
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.25s ease-out;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dusk-rose), var(--dusk-rose-dark));
  color: white;
  box-shadow: 0 8px 28px rgba(196, 139, 127, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 139, 127, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--deep-espresso);
  color: var(--deep-espresso);
  padding: 14px 28px;
}

.btn-secondary:hover {
  border-color: var(--dusk-rose);
  color: var(--dusk-rose);
}

.header-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 72px;
  height: 100vh;
  background: rgba(250, 248, 245, 0.99);
  backdrop-filter: blur(16px);
  border-right: 1px solid rgba(196, 139, 127, 0.12);
  box-shadow: 4px 0 56px rgba(45, 41, 38, 0.06);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow: hidden;
}

.header-sidebar:hover {
  width: 280px;
}

.sidebar-logo {
  padding: 24px 0;
  border-bottom: 1px solid rgba(196, 139, 127, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dusk-rose), var(--sage-whisper));
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--deep-espresso);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-sidebar:hover .logo-text {
  opacity: 1;
}

.sidebar-nav {
  flex: 1;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow-y: auto;
}

.sidebar-nav:hover {
  align-items: flex-start;
  padding-left: 24px;
}

.nav-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  transition: all 0.3s ease;
  color: rgba(107, 91, 84, 0.5);
  cursor: pointer;
  position: relative;
}

.nav-item:hover {
  background: rgba(196, 139, 127, 0.08);
  color: var(--dusk-rose);
  box-shadow: 0 4px 16px rgba(196, 139, 127, 0.12);
  width: calc(100% - 16px);
}

.nav-item svg {
  width: 22px;
  height: 22px;
  stroke-width: 2px;
  flex-shrink: 0;
}

.nav-item span {
  display: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: rgba(107, 91, 84, 0.8);
  margin-left: 14px;
}

.header-sidebar:hover .nav-item {
  width: calc(100% - 16px);
  justify-content: flex-start;
  padding: 0 16px;
}

.header-sidebar:hover .nav-item span {
  display: block;
}

.sidebar-cta {
  padding: 24px 0;
  border-top: 1px solid rgba(196, 139, 127, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dusk-rose), var(--dusk-rose-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196, 139, 127, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  box-shadow: 0 8px 28px rgba(196, 139, 127, 0.35);
  transform: scale(1.03);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2px;
  fill: none;
}

.cta-phone {
  font-family: var(--font-jetbrains);
  font-size: 11px;
  color: var(--dusk-rose);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-sidebar:hover .cta-phone {
  opacity: 1;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(250, 248, 245, 0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 139, 127, 0.1);
  z-index: 1000;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--dusk-rose), var(--sage-whisper));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.mobile-logo-text {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-espresso);
}

.hamburger {
  width: 44px;
  height: 44px;
  background: rgba(196, 139, 127, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, 0.99);
  backdrop-filter: blur(24px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
}

.mobile-nav-item {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 28px;
  color: var(--deep-espresso);
  padding: 16px 0;
  position: relative;
}

.mobile-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--dusk-rose);
  border-radius: 1px;
}

.hero-section {
  min-height: 100vh;
  padding: 120px 80px 80px 152px;
  position: relative;
  overflow: hidden;
  background: var(--pearl-white);
}

.liquid-light-canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.6;
}

.liquid-light-canvas::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at center, var(--pearl-white) 0%, var(--ivory-cream) 50%, #FAF0F5 75%, #FAF5ED 100%);
  filter: blur(120px);
  animation: liquidMove 40s ease-in-out infinite alternate;
}

@keyframes liquidMove {
  0% { transform: translate(-60px, -60px) scale(0.92); }
  100% { transform: translate(60px, 60px) scale(1.08); }
}

.particles-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.particles-grid::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(196, 139, 127, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(196, 139, 127, 0.15) 3px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(196, 139, 127, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(196, 139, 127, 0.15) 4px, transparent 4px),
    radial-gradient(circle at 10% 60%, rgba(196, 139, 127, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 90% 40%, rgba(196, 139, 127, 0.15) 3px, transparent 3px);
  background-size: 70px 70px;
  filter: blur(60px);
  animation: particlesMove 30s ease-in-out infinite alternate;
}

@keyframes particlesMove {
  0% { transform: translate(-40px, -40px) scale(0.95); }
  100% { transform: translate(40px, 40px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
  height: 100%;
}

.hero-left {
  z-index: 1;
}

.hero-organic-decor {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.12;
  max-width: 480px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-fraunces);
  font-style: italic;
  font-size: 18px;
  color: rgba(196, 139, 127, 0.6);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 17px;
  line-height: 1.75;
  color: var(--warm-taupe);
  max-width: 440px;
  margin-top: 20px;
}

.hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero-marker {
  width: 10px;
  height: 10px;
  background: var(--dusk-rose);
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(196, 139, 127, 0.25));
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  height: 520px;
}

.hero-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.bento-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.bento-item-1 {
  grid-row: span 2;
  margin-top: -24px;
  margin-left: -20px;
  box-shadow: 0 28px 72px rgba(45, 41, 38, 0.1);
  z-index: 1;
}

.bento-item-1:hover {
  z-index: 10;
  transform: scale(1.02);
}

.bento-item-2, .bento-item-3, .bento-item-4 {
  border-radius: 16px;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.1);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 56px rgba(45, 41, 38, 0.1);
  z-index: 5;
}

.floating-card-1 {
  top: 40px;
  right: 20px;
}

.floating-card-2 {
  bottom: 40px;
  right: 20px;
}

.floating-card-title {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 13px;
  color: var(--deep-espresso);
}

.floating-card-value {
  font-family: var(--font-jetbrains);
  font-size: 11px;
  color: var(--dusk-rose);
}

.curved-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 5;
}

.curved-divider svg {
  width: 100%;
  height: 100%;
}

.services-section {
  background: var(--pearl-white);
  padding: 120px 0 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted-mauve);
}

.masonry-grid {
  column-count: 3;
  column-gap: 24px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(45, 41, 38, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
  border-color: rgba(196, 139, 127, 0.15);
  box-shadow: 0 24px 64px rgba(196, 139, 127, 0.1);
  z-index: 10;
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 20px 24px 24px;
}

.service-card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dusk-rose);
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-espresso);
  margin-bottom: 8px;
}

.service-card-description {
  font-size: 14px;
  color: var(--warm-taupe);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-decor {
  width: 40px;
  height: 2px;
  background: var(--dusk-rose);
  border-radius: 1px;
}

.service-icon-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(45, 41, 38, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-icon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 139, 127, 0.15);
  box-shadow: 0 20px 56px rgba(196, 139, 127, 0.1);
  z-index: 10;
}

.service-icon-card svg {
  width: 48px;
  height: 48px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
  fill: none;
  margin-bottom: 16px;
}

.service-icon-value {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 36px;
  color: var(--dusk-rose);
}

.service-icon-label {
  font-size: 12px;
  color: var(--warm-taupe);
  margin-top: 4px;
}

.service-icon-tech {
  font-family: var(--font-jetbrains);
  font-size: 10px;
  color: var(--muted-mauve);
  margin-top: 8px;
}

.about-section {
  background: var(--ivory-cream);
  padding: 120px 0 100px;
}

.about-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  padding: 40px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.about-image-decor {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(196, 139, 127, 0.3);
}

.about-overlap-block {
  position: absolute;
  top: 20px;
  left: -40px;
  width: 120px;
  height: 80px;
  background: rgba(196, 139, 127, 0.06);
  border-radius: 16px;
  z-index: 10;
  transition: all 0.3s ease;
}

.about-image-wrapper:hover .about-overlap-block {
  z-index: 20;
  opacity: 1;
}

.about-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-decor {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(196, 139, 127, 0.4);
  margin-bottom: 24px;
}

.about-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-taupe);
}

.about-text-para {
  margin-bottom: 16px;
}

.about-decor-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 139, 127, 0.1), transparent);
  margin: 20px 0;
}

.about-cta {
  margin-top: 32px;
}

.process-section {
  background: var(--pearl-white);
  padding: 120px 0 100px;
}

.process-sticky-wrapper {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 100vh;
}

.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(135deg, rgba(196, 139, 127, 0.04), rgba(250, 248, 245, 0.8));
  border-right: 1px solid rgba(196, 139, 127, 0.08);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-sticky-decor {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(196, 139, 127, 0.4);
  margin-bottom: 24px;
}

.process-sticky-title {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.process-sticky-subtitle {
  font-size: 15px;
  color: var(--warm-taupe);
  line-height: 1.7;
}

.process-cta {
  margin-top: 32px;
}

.process-scroll {
  padding: 80px;
}

.process-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.08);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  background: white;
  border-color: rgba(196, 139, 127, 0.2);
  box-shadow: 0 20px 56px rgba(196, 139, 127, 0.08);
  transform: translateY(-2px);
  z-index: 10;
}

.process-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dusk-rose), var(--sage-whisper));
}

.process-card-content {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.process-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.process-card-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
  fill: none;
}

.process-card-text h4 {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.process-card-text p {
  font-size: 14px;
  line-height: 1.6;
}

.process-card-image {
  height: 100px;
  border-radius: 16px;
  margin-top: 16px;
  overflow: hidden;
}

.process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}

.marquee-section {
  background: linear-gradient(135deg, rgba(196, 139, 127, 0.04), rgba(250, 248, 245, 0.8));
  padding: 40px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  padding: 0 24px;
}

.marquee-text {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 13px;
  color: var(--deep-espresso);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  background: var(--dusk-rose);
  border-radius: 50%;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.advantages-section {
  background: var(--deep-espresso);
  padding: 120px 0 100px;
}

.advantages-section .section-title {
  color: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.1);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.advantage-card:hover {
  flex-grow: 1.5;
  background: white;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.12);
  border-color: rgba(196, 139, 127, 0.15);
  z-index: 10;
}

.advantage-card:hover .advantage-value {
  color: var(--dusk-rose);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.advantage-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--sage-whisper);
  stroke-width: 2px;
  fill: none;
}

.advantage-value {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 44px;
  color: white;
  transition: color 0.3s ease;
}

.advantage-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.advantage-decor {
  width: 40px;
  height: 2px;
  background: rgba(196, 139, 127, 0.4);
  border-radius: 1px;
  margin-top: 16px;
}

.achievements-section {
  background: var(--ivory-cream);
  padding: 120px 0 100px;
}

.achievements-stack {
  max-width: 900px;
  margin: 0 auto;
}

.achievement-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  border: 1px solid rgba(196, 139, 127, 0.08);
  box-shadow: 0 20px 56px rgba(45, 41, 38, 0.08);
  padding: 0;
  margin-bottom: -80px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.achievement-card:hover {
  box-shadow: 0 28px 72px rgba(196, 139, 127, 0.1);
  z-index: 10;
  transform: translateY(-4px);
}

.achievement-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--dusk-rose), var(--sage-whisper));
  border-radius: 18px 18px 0 0;
}

.achievement-card-content {
  display: flex;
  gap: 24px;
  padding: 28px;
  align-items: center;
}

.achievement-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.achievement-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
  fill: none;
}

.achievement-text h4 {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 16px;
}

.achievement-value {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 32px;
  color: var(--dusk-rose);
  margin-top: 4px;
}

.achievement-label {
  font-size: 12px;
  color: var(--warm-taupe);
  margin-top: 4px;
}

.achievement-tech {
  font-family: var(--font-jetbrains);
  font-size: 10px;
  color: var(--muted-mauve);
  margin-top: 4px;
}

.team-section {
  background: var(--pearl-white);
  padding: 120px 0 100px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 40px;
}

.team-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(45, 41, 38, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.team-item:hover {
  background: white;
  border-color: rgba(196, 139, 127, 0.15);
  box-shadow: 0 24px 64px rgba(196, 139, 127, 0.08);
  transform: translateX(8px);
}

.team-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.team-item-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
  fill: none;
}

.team-item-info h4 {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 18px;
}

.team-item-info p {
  font-size: 14px;
  color: var(--warm-taupe);
  margin-top: 4px;
}

.team-item-right {
  width: 0;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover .team-item-right {
  width: 280px;
}

.team-item-image {
  height: 80px;
  width: 280px;
  border-radius: 16px;
  object-fit: cover;
}

.team-item-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--dusk-rose), var(--sage-whisper));
  margin-top: 12px;
}

.faq-section {
  background: var(--warm-taupe);
  padding: 120px 0 100px;
}

.faq-section .section-title {
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 80px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  border: 1px solid rgba(196, 139, 127, 0.08);
  box-shadow: 0 16px 48px rgba(45, 41, 38, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:nth-child(odd) {
  align-self: start;
}

.faq-item:nth-child(even) {
  align-self: end;
  margin-top: 24px;
}

.faq-item:hover {
  border-color: rgba(196, 139, 127, 0.15);
  box-shadow: 0 20px 56px rgba(196, 139, 127, 0.08);
  z-index: 10;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.faq-question-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-right: 16px;
}

.faq-question-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
  fill: none;
}

.faq-question-text h4 {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 16px;
  flex: 1;
}

.faq-question-text p {
  font-size: 14px;
  color: var(--warm-taupe);
  line-height: 1.6;
  margin-top: 4px;
}

.faq-question-image {
  width: 120px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  stroke: var(--muted-mauve);
  stroke-width: 2px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--dusk-rose);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px;
}

.faq-answer-image {
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  margin-top: 16px;
}

.faq-answer-text {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 12px;
}

.faq-answer-cta {
  margin-top: 16px;
}

.testimonials-section {
  background: var(--pearl-white);
  padding: 120px 0 100px;
}

.testimonials-carousel {
  position: relative;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  margin-top: 40px;
}

.testimonial-card {
  width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(45, 41, 38, 0.08);
  position: absolute;
  transition: all 0.4s ease;
}

.testimonial-card-image {
  height: 110px;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  filter: saturate(0.98);
}

.testimonial-card-content {
  padding: 24px;
}

.testimonial-decor {
  width: 32px;
  height: 2px;
  background: rgba(196, 139, 127, 0.2);
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--dusk-rose);
}

.testimonial-text {
  font-style: 15px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 139, 127, 0.15);
}

.testimonial-name {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 14px;
}

.testimonial-company {
  font-size: 12px;
  color: var(--muted-mauve);
}

.testimonial-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--dusk-rose), var(--sage-whisper));
  border-radius: 3px;
  margin-top: 16px;
}

.testimonial-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 139, 127, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background: white;
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--dusk-rose);
  stroke-width: 2px;
}

.testimonial-nav-prev {
  left: 10%;
}

.testimonial-nav-next {
  right: 10%;
}

.contacts-section {
  background: var(--pearl-white);
  padding: 120px 0 100px;
}

.contacts-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.contacts-form-wrapper {
  padding: 80px 60px;
}

.contacts-form-decor {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(196, 139, 127, 0.4);
  margin-bottom: 24px;
}

.contacts-form-title {
  font-size: 28px;
  margin-bottom: 24px;
}

.contacts-form-subtitle {
  font-size: 14px;
  color: var(--muted-mauve);
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-family: var(--font-jetbrains);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted-mauve);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(45, 41, 38, 0.1);
  border-radius: 0;
  font-family: var(--font-satoshi);
  font-size: 16px;
  background: transparent;
  transition: border-color 0.3s ease;
  color: var(--deep-espresso);
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--dusk-rose);
}

.form-input:focus + .form-label {
  color: var(--dusk-rose);
}

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

.contacts-form-btn {
  margin-top: 16px;
}

.contacts-info-wrapper {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 80px 48px;
  border: 1px solid rgba(196, 139, 127, 0.08);
  box-shadow: 0 20px 56px rgba(45, 41, 38, 0.08);
}

.contacts-info-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(196, 139, 127, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacts-info-block:last-of-type {
  border-bottom: none;
}

.contacts-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contacts-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--dusk-rose);
  stroke-width: 1.5px;
  fill: none;
}

.contacts-info-text {
  font-size: 15px;
  color: var(--warm-taupe);
}

.contacts-map {
  margin-top: 24px;
  border-radius: 16px;
  border: 1px solid rgba(196, 139, 127, 0.08);
  box-shadow: 0 8px 24px rgba(45, 41, 38, 0.06);
  overflow: hidden;
}

.contacts-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  filter: grayscale(100%);
}

.footer {
  background: var(--deep-espresso);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dusk-rose), var(--sage-whisper));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.footer-logo-text {
  font-family: var(--font-fraunces);
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-fraunces);
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dusk-rose);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--dusk-rose);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 139, 127, 0.12);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 20px 56px rgba(45, 41, 38, 0.15);
  z-index: 9999;
  max-width: 400px;
}

.cookie-text {
  font-size: 14px;
  color: var(--warm-taupe);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--dusk-rose), var(--dusk-rose-dark));
  color: white;
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(45, 41, 38, 0.2);
  color: var(--warm-taupe);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.reveal-fade {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.65s ease-out forwards;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  animation: fadeIn 0.6s ease-out forwards;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  animation: fadeLeft 0.6s ease-out forwards;
}

.reveal-organic {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

.page-hero {
  min-height: 280px;
  padding: 140px 80px 60px 152px;
  background: var(--pearl-white);
  position: relative;
  overflow: hidden;
}

.page-hero .liquid-light-canvas {
  opacity: 0.3;
}

.page-hero .particles-grid {
  opacity: 0.5;
}

.breadcrumbs {
  font-family: var(--font-jetbrains);
  font-size: 12px;
  color: var(--muted-mauve);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--dusk-rose);
}

.page-hero-title {
  font-size: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-decor {
  width: 24px;
  height: 24px;
  stroke: var(--dusk-rose);
  stroke-width: 3px;
  fill: none;
}

.page-hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.page-hero-marker {
  width: 8px;
  height: 8px;
  background: var(--dusk-rose);
  border-radius: 50%;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dusk-rose), var(--sage-whisper));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2px;
  fill: none;
}

.thank-you-title {
  font-size: 36px;
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 18px;
  color: var(--warm-taupe);
  margin-bottom: 32px;
}

.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-title {
  font-size: 28px;
  margin-bottom: 24px;
}

.legal-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-taupe);
  margin-bottom: 24px;
}

.legal-text h3 {
  font-size: 20px;
  margin: 32px 0 16px;
}

.legal-text ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-text li {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .header-sidebar {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .hero-section {
    padding: 100px 24px 60px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-right {
    height: 400px;
    order: -1;
  }
  
  .masonry-grid {
    column-count: 2;
  }
  
  .about-split {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper {
    height: 300px;
  }
  
  .process-sticky-wrapper {
    grid-template-columns: 1fr;
  }
  
  .process-sticky {
    position: relative;
    height: auto;
    padding: 40px 24px;
  }
  
  .process-scroll {
    padding: 40px 24px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  
  .contacts-split {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .page-hero {
    padding: 100px 24px 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .masonry-grid {
    column-count: 1;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .team-list {
    padding: 0 16px;
  }
  
  .team-item-right {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
