@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
  --color-pearl-mist: #FFF8F5;
  --color-soft-cream: #FDFBF7;
  --color-vintage-rose: #B8546E;
  --color-vintage-rose-dark: #9A4460;
  --color-sage-mist: #7A9E7E;
  --color-warm-drizzle: #C9A87C;
  --color-deep-umber: #3D2B2B;
  --color-warm-cocoa: #5C4033;
  --color-dusty-mauve: #A89FAD;
  --color-light-coral: #F5E6E8;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --shadow-card: 0 24px 64px rgba(61, 43, 43, 0.08);
  --shadow-card-hover: 0 28px 80px rgba(184, 84, 110, 0.1);
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s 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: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-warm-cocoa);
  background-color: var(--color-soft-cream);
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(184, 84, 110, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-vintage-rose), var(--color-sage-mist));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

.vertical-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 72px;
  background: rgba(255, 248, 245, 0.99);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(184, 84, 110, 0.12);
  box-shadow: 4px 0 56px rgba(61, 43, 43, 0.06);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.vertical-sidebar:hover {
  width: 240px;
}

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

.sidebar-logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

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

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

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

.nav-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.nav-item svg {
  width: 24px;
  height: 24px;
  stroke: rgba(92, 64, 51, 0.5);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.nav-item-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(92, 64, 51, 0.7);
  white-space: nowrap;
  opacity: 0;
  display: none;
  margin-left: 12px;
  transition: opacity 0.3s ease;
}

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

.vertical-sidebar:hover .nav-item-text {
  opacity: 1;
  display: block;
}

.nav-item:hover {
  background: rgba(184, 84, 110, 0.08);
}

.nav-item:hover svg {
  stroke: var(--color-vintage-rose);
}

.nav-item:hover .nav-item-text {
  color: var(--color-vintage-rose);
}

.sidebar-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(184, 84, 110, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sidebar-cta {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-vintage-rose), var(--color-vintage-rose-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(184, 84, 110, 0.25);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.sidebar-cta-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}

.vertical-sidebar:hover .sidebar-cta {
  width: calc(100% - 16px);
  gap: 10px;
  justify-content: center;
}

.vertical-sidebar:hover .sidebar-cta-text {
  opacity: 1;
}

.sidebar-cta:hover {
  box-shadow: 0 10px 32px rgba(184, 84, 110, 0.35);
  transform: scale(1.02);
}

.sidebar-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-vintage-rose);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vertical-sidebar:hover .sidebar-phone {
  opacity: 1;
}

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

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

.mobile-logo svg {
  width: 32px;
  height: 32px;
}

.mobile-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: var(--color-deep-umber);
}

.hamburger-btn {
  width: 44px;
  height: 44px;
  background: rgba(184, 84, 110, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-btn svg {
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 248, 245, 0.99);
  backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

.mobile-menu-close svg {
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-deep-umber);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-menu-overlay.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-divider {
  width: 60px;
  height: 2px;
  background: var(--color-vintage-rose);
}

.mobile-menu-contact {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-vintage-rose);
}

.main-content {
  margin-left: 72px;
  min-height: 100vh;
}

.hero-section {
  min-height: 100vh;
  background: var(--color-soft-cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
}

.hero-blob-1 {
  position: absolute;
  top: -100px;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(184, 84, 110, 0.1) 0%, rgba(122, 158, 126, 0.06) 50%, transparent 80%);
  filter: blur(100px);
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  animation: blobFloat1 30s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-blob-2 {
  position: absolute;
  bottom: -150px;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(122, 158, 126, 0.08) 0%, rgba(201, 168, 124, 0.04) 50%, transparent 80%);
  filter: blur(120px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobFloat2 35s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-blob-3 {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(201, 168, 124, 0.06) 0%, rgba(184, 84, 110, 0.03) 50%, transparent 80%);
  filter: blur(80px);
  border-radius: 50%;
  animation: blobFloat3 25s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes blobFloat1 {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes blobFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -40px) scale(0.95); }
}

@keyframes blobFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  grid-column: span 5;
  z-index: 1;
}

.hero-organic-decor {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--color-deep-umber);
  max-width: 480px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--color-dusty-mauve);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 17px;
  color: #78716C;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-markers {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-marker {
  width: 10px;
  height: 10px;
  background: var(--color-vintage-rose);
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(184, 84, 110, 0.3));
}

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

.btn-primary {
  padding: 20px 44px;
  background: linear-gradient(135deg, var(--color-vintage-rose), var(--color-vintage-rose-dark));
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(184, 84, 110, 0.3);
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(184, 84, 110, 0.4);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  padding: 18px 36px;
  background: transparent;
  border: 2px solid var(--color-deep-umber);
  color: var(--color-deep-umber);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 24px;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

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

.hero-visual {
  grid-column: span 7;
  position: relative;
  height: 520px;
}

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

.bento-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.bento-item.large {
  grid-row: span 2;
}

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

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 84, 110, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

.hero-card-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-deep-umber);
}

.hero-card-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-vintage-rose);
}

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

.hero-card-2 {
  bottom: 60px;
  right: -20px;
}

.section-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}

.section-light {
  background: var(--color-soft-cream);
  padding: 100px 80px 80px;
}

.section-cream {
  background: var(--color-pearl-mist);
  padding: 100px 80px 80px;
}

.section-dark {
  background: var(--color-deep-umber);
  padding: 100px 80px 80px;
}

.section-dark .section-title,
.section-dark .section-subtitle {
  color: white;
}

.section-dark .card-stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-deep-umber);
  margin-bottom: 24px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  color: #78716C;
  line-height: 1.8;
  max-width: 600px;
}

.organic-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

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

.service-card {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 84, 110, 0.08);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  overflow: hidden;
}

.service-card:hover {
  background: white;
  border-color: rgba(184, 84, 110, 0.15);
  box-shadow: var(--shadow-card-hover);
  z-index: 10;
}

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

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
  fill: none;
}

.service-content {
  grid-column: span 2;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-deep-umber);
  margin-bottom: 8px;
}

.service-description {
  font-size: 14px;
  color: #78716C;
  line-height: 1.6;
  margin-bottom: 8px;
}

.service-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-dusty-mauve);
}

.service-reveal {
  position: absolute;
  top: 0;
  right: -20px;
  width: 200px;
  height: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.service-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover .service-reveal {
  opacity: 1;
  transform: translateX(0);
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
}

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

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-decor {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.about-image-overlay {
  position: absolute;
  top: 20px;
  left: -40px;
  width: 120px;
  height: 80px;
  background: rgba(184, 84, 110, 0.06);
  border-radius: 40px;
  z-index: 10;
  transition: all var(--transition-base);
}

.about-image:hover .about-image-overlay {
  z-index: 20;
}

.about-content {
  padding-left: 60px;
}

.btn-accent {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-vintage-rose), var(--color-vintage-rose-dark));
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(184, 84, 110, 0.2);
  transition: all 0.25s ease-out;
  margin-top: 24px;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 84, 110, 0.25);
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-vintage-rose), var(--color-sage-mist), var(--color-warm-drizzle), var(--color-vintage-rose));
  border-radius: 4px;
  transform: translateX(-50%);
}

.process-step {
  width: calc(50% - 64px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  border: 1px solid rgba(184, 84, 110, 0.08);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition-base);
}

.process-step:nth-child(odd) {
  align-self: flex-start;
  margin-right: auto;
}

.process-step:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
}

.process-step:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: var(--shadow-card-hover);
}

.process-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--color-vintage-rose);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-vintage-rose);
  transform: translate(-50%, -50%);
}

.process-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
  fill: none;
}

.process-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: rgba(184, 84, 110, 0.15);
  margin-bottom: 4px;
}

.process-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-deep-umber);
  margin-bottom: 4px;
}

.process-text {
  font-size: 13px;
  color: #78716C;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

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

.marquee-container {
  overflow: hidden;
  padding: 30px 0;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

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

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

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

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

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
  flex-grow: 1.5;
  background: white;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(184, 84, 110, 0.15);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
}

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

.advantage-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.advantage-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-sage-mist);
  stroke-width: 2;
  fill: none;
}

.card-stat-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 44px;
  color: var(--color-vintage-rose-dark);
  margin-bottom: 8px;
}

.card-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.6);
}

.advantage-decor {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.achievements-container {
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.achievement-center {
  width: 160px;
  height: 160px;
  background: rgba(184, 84, 110, 0.08);
  border: 2px solid var(--color-vintage-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.achievement-center svg {
  width: 64px;
  height: 64px;
  stroke: var(--color-deep-umber);
  stroke-width: 2;
  fill: none;
}

.achievement-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.achievement-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 84, 110, 0.08);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  margin: -10px;
}

.achievement-card:hover {
  transform: scale(1.08);
  z-index: 10;
  border-color: rgba(184, 84, 110, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.achievement-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.achievement-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-warm-drizzle);
  stroke-width: 2;
  fill: none;
}

.achievement-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  color: var(--color-deep-umber);
}

.achievement-label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #78716C;
}

.team-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 80px;
}

.team-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

.team-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 84, 110, 0.1);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
}

.team-arrow:hover {
  background: var(--color-vintage-rose);
  border-color: var(--color-vintage-rose);
  box-shadow: 0 28px 80px rgba(184, 84, 110, 0.2);
}

.team-arrow:hover svg {
  stroke: white;
}

.team-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
  fill: none;
}

.team-arrow-prev {
  left: 0;
}

.team-arrow-next {
  right: 0;
}

.team-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 84, 110, 0.08);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  overflow: hidden;
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(184, 84, 110, 0.15);
  z-index: 10;
}

.team-card-glow {
  height: 4px;
  background: linear-gradient(90deg, var(--color-vintage-rose), var(--color-sage-mist));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-card-image {
  height: 160px;
  overflow: hidden;
}

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

.team-card-content {
  padding: 20px;
}

.team-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.team-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
  fill: none;
}

.team-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-deep-umber);
}

.team-card-role {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-vintage-rose);
  margin-top: 4px;
}

.team-card-bio {
  font-size: 13px;
  color: #78716C;
  line-height: 1.5;
  margin-top: 8px;
}

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

.faq-block {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 84, 110, 0.08);
  padding: 24px;
  transition: all var(--transition-base);
  overflow: hidden;
}

.faq-block:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  z-index: 10;
}

.faq-block-large {
  grid-column: span 2;
  grid-row: span 2;
}

.faq-block-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.faq-block-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-deep-umber);
  margin-bottom: 16px;
}

.faq-block-subtitle {
  font-size: 14px;
  color: #78716C;
  max-width: 280px;
}

.faq-card {
  border-top: 3px solid var(--color-vintage-rose);
}

.faq-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.faq-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
  fill: none;
}

.faq-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-deep-umber);
}

.faq-card-text {
  font-size: 13px;
  color: #78716C;
  margin-top: 8px;
  line-height: 1.6;
}

.faq-cta {
  background: linear-gradient(135deg, var(--color-vintage-rose), var(--color-vintage-rose-dark));
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(184, 84, 110, 0.25);
}

.faq-cta-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin-bottom: 16px;
}

.faq-cta-btn {
  background: white;
  color: var(--color-vintage-rose);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: all var(--transition-base);
}

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

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

.testimonials-carousel {
  position: relative;
  width: 320px;
  height: 400px;
  transform-style: preserve-3d;
}

.testimonial-card {
  position: absolute;
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 84, 110, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.testimonial-image {
  height: 140px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.testimonial-content {
  padding: 24px;
}

.testimonial-decor {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

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

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-warm-drizzle);
}

.testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: #78716C;
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184, 84, 110, 0.15);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-deep-umber);
}

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

.testimonial-glow {
  height: 4px;
  background: linear-gradient(90deg, var(--color-vintage-rose), var(--color-sage-mist));
  border-radius: 4px;
  margin-top: 16px;
}

.testimonial-nav {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 84, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition-base);
}

.testimonial-nav:hover {
  background: var(--color-vintage-rose);
  border-color: var(--color-vintage-rose);
}

.testimonial-nav:hover svg {
  stroke: white;
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-vintage-rose);
  stroke-width: 2;
  fill: none;
}

.testimonial-nav-prev {
  left: -80px;
}

.testimonial-nav-next {
  right: -80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  position: relative;
}

.contact-divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 80px;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(253, 251, 247, 0.6), rgba(184, 84, 110, 0.04), transparent);
  transform: translateX(-50%);
  z-index: 5;
}

.contact-form-section {
  padding: 80px 60px;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-deep-umber);
  margin-bottom: 24px;
}

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

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

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-dusty-mauve);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(61, 43, 43, 0.1);
  background: transparent;
  font-size: 16px;
  color: var(--color-warm-cocoa);
  transition: border-color var(--transition-base);
}

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

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  color: var(--color-vintage-rose);
}

.form-textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(61, 43, 43, 0.1);
  background: transparent;
  font-size: 16px;
  color: var(--color-warm-cocoa);
  resize: none;
  transition: border-color var(--transition-base);
  line-height: 1.8;
}

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

.btn-submit {
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--color-vintage-rose), var(--color-vintage-rose-dark));
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(184, 84, 110, 0.2);
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-submit:hover {
  box-shadow: 0 8px 28px rgba(184, 84, 110, 0.3);
  transform: translateY(-2px);
}

.contact-info-section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  border: 1px solid rgba(184, 84, 110, 0.08);
  box-shadow: var(--shadow-card);
  margin-left: 40px;
}

.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 84, 110, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item:last-child {
  border-bottom: none;
}

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

.contact-info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-vintage-rose);
  stroke-width: 1.5;
  fill: none;
}

.contact-info-text {
  font-size: 15px;
  color: #78716C;
}

.contact-map {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 84, 110, 0.08);
  box-shadow: 0 8px 24px rgba(61, 43, 43, 0.06);
  margin-top: 24px;
  filter: grayscale(100%);
}

.footer {
  background: var(--color-pearl-mist);
  padding: 80px 80px 40px;
  border-top: 1px solid rgba(184, 84, 110, 0.1);
  position: relative;
  z-index: 100;
}

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

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-deep-umber);
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 14px;
  color: #78716C;
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-deep-umber);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: #78716C;
  transition: color var(--transition-base);
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-vintage-rose);
  transition: width 0.25s ease;
}

.footer-link:hover {
  color: var(--color-vintage-rose);
}

.footer-link:hover::after {
  width: 100%;
}

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

.footer-copyright {
  font-size: 13px;
  color: var(--color-dusty-mauve);
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--color-dusty-mauve);
  transition: color var(--transition-base);
}

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 84, 110, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 24px 64px rgba(61, 43, 43, 0.12);
  z-index: 9999;
  max-width: 420px;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-deep-umber);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 13px;
  color: #78716C;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  transition: all var(--transition-base);
}

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

.cookie-btn-accept:hover {
  box-shadow: 0 6px 20px rgba(184, 84, 110, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(184, 84, 110, 0.2);
  color: var(--color-warm-cocoa);
}

.cookie-btn-decline:hover {
  border-color: var(--color-vintage-rose);
  color: var(--color-vintage-rose);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-fade.visible {
  opacity: 1;
}

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

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

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

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-organic {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-organic.visible {
  opacity: 1;
  transform: scale(1);
}

.compact-hero {
  height: 280px;
  background: var(--color-pearl-mist);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 120px;
}

.compact-hero .hero-blob-1 {
  opacity: 0.4;
  transform: scale(0.6);
}

.compact-hero .hero-blob-2,
.compact-hero .hero-blob-3 {
  display: none;
}

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

.breadcrumbs a {
  transition: color var(--transition-base);
}

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

.compact-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 44px;
  color: var(--color-deep-umber);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-line-decor {
  width: 24px;
  height: 24px;
  background: var(--color-vintage-rose);
  border-radius: 50%;
}

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

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

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: var(--color-soft-cream);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-vintage-rose), var(--color-sage-mist));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

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

.thank-you-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: var(--color-deep-umber);
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 18px;
  color: #78716C;
  max-width: 500px;
  margin-bottom: 32px;
}

.legal-section {
  background: var(--color-soft-cream);
  padding: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-deep-umber);
  margin-bottom: 24px;
}

.legal-text {
  font-size: 15px;
  color: #78716C;
  line-height: 1.9;
  margin-bottom: 20px;
}

.legal-text:last-child {
  margin-bottom: 0;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 24px;
}

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

.info-block {
  padding: 40px 80px;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.section-white {
  background: white;
  padding: 100px 80px 80px;
}

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .hero-text {
    grid-column: span 3;
  }
  
  .hero-visual {
    grid-column: span 3;
    height: auto;
    min-height: 400px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    padding-right: 0;
  }
  
  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .vertical-sidebar {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }
  
  .hero-section {
    padding: 60px 24px 60px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    grid-column: span 1;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
    max-width: 100%;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    grid-column: span 1;
    min-height: 300px;
  }
  
  .section-light,
  .section-cream,
  .section-dark {
    padding: 80px 24px 60px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 16px;
  }
  
  .service-card {
    grid-template-columns: 1fr;
  }
  
  .service-content {
    grid-column: span 1;
  }
  
  .service-reveal {
    display: none;
  }
  
  .process-line {
    left: 24px;
  }
  
  .process-step {
    width: calc(100% - 64px);
    margin-left: 64px !important;
    margin-right: 0 !important;
  }
  
  .process-step:nth-child(even) {
    align-self: auto;
  }
  
  .process-dot {
    left: 0;
    transform: translate(-50%, -50%);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card:hover {
    flex-grow: 1;
  }
  
  .faq-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .faq-block {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 200px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-divider {
    display: none;
  }
  
  .contact-form-section {
    padding: 60px 24px;
  }
  
  .contact-info-section {
    margin-left: 0;
    margin-top: 24px;
    padding: 40px 24px;
  }
  
  .footer {
    padding: 60px 24px 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .team-slider-container {
    padding: 0 24px;
  }
  
  .team-arrow {
    display: none;
  }
  
  .compact-hero {
    padding: 80px 24px;
    height: auto;
    min-height: 220px;
  }
  
  .compact-hero-title {
    font-size: 32px;
  }
  
  .legal-section {
    padding: 60px 24px;
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 120px);
  }
  
  .bento-item.large {
    grid-row: span 1;
  }
  
  .hero-card {
    display: none;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .achievements-container {
    min-height: auto;
  }
  
  .achievement-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .achievement-center {
    width: 100px;
    height: 100px;
  }
  
  .achievement-center svg {
    width: 40px;
    height: 40px;
  }
  
  .achievement-card {
    position: relative;
    margin: 0;
  }
  
  .testimonials-container {
    height: auto;
    min-height: 400px;
  }
  
  .testimonials-carousel {
    width: 100%;
    height: auto;
    position: relative;
    transform: none !important;
  }
  
  .testimonial-card {
    position: relative;
    width: 100%;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    margin-bottom: 24px;
  }
  
  .testimonial-nav {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
