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

:root {
  --ice-white: #F0FAF8;
  --crystal-mint: #E8F5F1;
  --deep-aqua: #0D9488;
  --fresh-mint: #14B8A6;
  --ocean-teal: #0F766E;
  --deep-navy: #0F172A;
  --ocean-charcoal: #334155;
  --soft-steel: #94A3B8;
  --light-slate: #64748B;
  --lighter-slate: #CBD5E1;
  --white: #FFFFFF;
  --shadow-aqua: rgba(13, 148, 136, 0.1);
  --shadow-aqua-medium: rgba(13, 148, 136, 0.15);
  --shadow-aqua-strong: rgba(13, 148, 136, 0.25);
  --glow-aqua: rgba(13, 148, 136, 0.06);
  --glass-bg: rgba(240, 250, 248, 0.96);
  --card-bg: rgba(255, 255, 255, 0.97);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ocean-charcoal);
  background-color: var(--ice-white);
  overflow-x: hidden;
}

strong, p, span {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--deep-navy);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--light-slate);
  max-width: 600px;
}

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

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

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  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(-28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

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

.diagonal-transition {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 10;
  overflow: hidden;
}

.diagonal-transition svg {
  width: 100%;
  height: 100%;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.15);
  animation: floatParticle 12s ease-in-out infinite alternate;
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(10px); }
}

.header {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: 960px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 60px;
  box-shadow: 0 12px 48px var(--shadow-aqua), 0 32px 80px var(--glow-aqua), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 16px 48px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  padding: 10px 24px;
}


.header.scrolled .header-logo-text {
  display: none;
}

.header.scrolled .header-logo-icon svg {
  width: 28px;
  height: 28px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-icon svg {
  width: 40px;
  height: 40px;
  transition: width 0.35s ease, height 0.35s ease;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
}

.header-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--deep-navy);
  white-space: nowrap;
}

.header-logo-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--soft-steel);
  letter-spacing: 0.1em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  transition: opacity 0.35s ease;
}

.header-nav a {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ocean-charcoal);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.header-nav a::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--deep-aqua);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.header-nav a:hover {
  color: var(--deep-aqua);
}

.header-nav a:hover::before {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--deep-aqua);
  text-decoration: none;
}

.btn-primary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--deep-aqua), var(--fresh-mint));
  color: var(--white);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow-aqua-strong);
  transition: all 0.25s ease-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px var(--shadow-aqua-strong);
  transform: translateY(-2px);
}

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

.btn-secondary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 36px;
  background: transparent;
  border: 2px solid var(--deep-navy);
  color: var(--deep-navy);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--deep-aqua);
  color: var(--deep-aqua);
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(240, 250, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  padding: 0 20px;
}

.mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.mobile-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-navy);
}

.hamburger {
  width: 44px;
  height: 44px;
  background: rgba(13, 148, 136, 0.1);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep-aqua);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--deep-navy);
  text-decoration: none;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

.mobile-menu a:nth-child(1) { transition-delay: 0.07s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.21s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.42s; }

.mobile-menu-divider {
  width: 60px;
  height: 2px;
  background: var(--deep-aqua);
  margin: 0 auto 24px;
}

.mobile-menu-contact {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--deep-aqua);
  margin-top: 32px;
}

.mobile-menu-address {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: var(--soft-steel);
  margin-top: 8px;
  text-align: center;
  max-width: 280px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(13, 148, 136, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--deep-aqua);
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(13, 148, 136, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-drop {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.hero-drop svg {
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.88;
  max-width: 520px;
  margin-bottom: 20px;
  overflow: hidden;
}

.hero-title span {
  display: block;
  animation: revealTitle 0.7s ease-out forwards;
}

@keyframes revealTitle {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--light-slate);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
}

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

.hero-marker {
  width: 8px;
  height: 8px;
  background: var(--deep-aqua);
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.25));
}

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

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-crystal {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  animation: rotateCrystal 45s ease-in-out infinite;
}

@keyframes rotateCrystal {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}

.crystal-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(20, 184, 166, 0.05));
  border: 1px solid rgba(13, 148, 136, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px var(--shadow-aqua);
}

.hero-card-1 {
  top: 80px;
  right: 0;
}

.hero-card-2 {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-card-3 {
  bottom: 40px;
  right: 0;
}

.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.hero-card-value {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--deep-aqua);
}

.hero-aqua-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.02); opacity: 1; }
}

.page-hero {
  min-height: 280px;
  background: var(--ice-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 80px 60px;
}

.page-hero-content {
  max-width: 560px;
  margin-left: 40px;
}

.breadcrumbs {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--soft-steel);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--soft-steel);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: var(--deep-aqua);
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-drop {
  width: 8px;
  height: 8px;
  background: var(--deep-aqua);
  border-radius: 50%;
  display: inline-block;
}

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

.page-hero-marker {
  width: 6px;
  height: 6px;
  background: var(--fresh-mint);
  border-radius: 50%;
}

.services-section {
  background: var(--ice-white);
  padding: 100px 0;
  position: relative;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 48px;
}

.service-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 48px var(--glow-aqua);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 20px 56px var(--shadow-aqua-medium);
  border-color: rgba(13, 148, 136, 0.15);
  transform: translateY(-4px);
}

.service-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint));
  border-radius: 3px 3px 0 0;
}

.service-card-icon {
  padding: 24px 0 16px 24px;
}

.service-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-navy);
  padding: 0 24px;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 13px;
  color: var(--light-slate);
  line-height: 1.5;
  padding: 0 24px 20px;
}

.service-card-price {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--deep-aqua);
  padding: 0 24px 20px;
}

.about-section {
  background: var(--crystal-mint);
  padding: 100px 0;
  position: relative;
}

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

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

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--deep-aqua), var(--fresh-mint));
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.06) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}

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

.about-image-decor svg {
  width: 80px;
  height: 80px;
  stroke: rgba(13, 148, 136, 0.4);
  stroke-width: 2;
  fill: none;
}

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

.about-drop {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.about-drop svg {
  width: 100%;
  height: 100%;
  fill: rgba(13, 148, 136, 0.15);
  stroke: var(--deep-aqua);
  stroke-width: 2;
}

.about-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--light-slate);
  line-height: 1.8;
  margin-bottom: 32px;
}

.process-section {
  background: var(--ice-white);
  padding: 100px 0;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 48px;
  position: relative;
}

.process-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border-top: 4px solid var(--fresh-mint);
  box-shadow: 0 20px 60px var(--glow-aqua);
  padding: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 28px 80px var(--shadow-aqua-medium);
  z-index: 10;
}

.process-card-icon {
  padding: 28px 0 20px 28px;
}

.process-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.process-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--deep-navy);
  padding: 0 28px;
  margin-bottom: 12px;
}

.process-card-text {
  font-size: 14px;
  color: var(--light-slate);
  line-height: 1.65;
  padding: 0 28px 28px;
}

.process-card-decor {
  height: 2px;
  width: 30px;
  background: var(--fresh-mint);
  border-radius: 2px;
  margin: 12px 28px;
}

.advantages-section {
  background: var(--deep-aqua);
  padding: 100px 0;
  position: relative;
}

.advantages-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.advantages-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

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

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: scale(1.03);
  border-color: rgba(13, 148, 136, 0.15);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.advantage-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--crystal-mint), var(--ice-white));
  filter: saturate(1.05);
}

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

.advantage-card-icon {
  margin-bottom: 16px;
}

.advantage-card-icon svg {
  width: 52px;
  height: 52px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.advantage-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.advantage-card-text {
  font-size: 14px;
  color: var(--light-slate);
  line-height: 1.65;
}

.advantage-card-decor {
  height: 3px;
  width: 40px;
  background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint));
  border-radius: 3px;
  margin: 16px 24px;
}

.achievements-section {
  background: var(--crystal-mint);
  padding: 100px 0;
  position: relative;
}

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

.achievement-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
  flex-grow: 1.5;
  background: var(--white);
  box-shadow: 0 24px 72px var(--shadow-aqua);
  border-color: rgba(13, 148, 136, 0.15);
}

.achievement-card:hover ~ .achievement-card {
  flex-grow: 0.7;
  opacity: 0.85;
}

.achievement-icon {
  margin-bottom: 14px;
}

.achievement-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.achievement-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--deep-navy);
  transition: color 0.3s ease;
}

.achievement-card:hover .achievement-value {
  color: var(--deep-aqua);
}

.achievement-label {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  color: var(--soft-steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.achievement-decor {
  position: absolute;
  right: 28px;
  top: 28px;
}

.achievement-decor svg {
  width: 40px;
  height: 40px;
  stroke: rgba(13, 148, 136, 0.3);
  stroke-width: 2;
  fill: none;
}

.testimonials-section {
  background: var(--ice-white);
  padding: 100px 0;
  position: relative;
}

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

.testimonial-card {
  position: absolute;
  width: 320px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.08);
  box-shadow: 0 16px 48px var(--glow-aqua);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.testimonial-card:nth-child(1) { transform: rotateY(0deg) translateZ(320px); z-index: 3; }
.testimonial-card:nth-child(2) { transform: rotateY(60deg) translateZ(320px); z-index: 2; }
.testimonial-card:nth-child(3) { transform: rotateY(-60deg) translateZ(320px); z-index: 2; }
.testimonial-card:nth-child(4) { transform: rotateY(120deg) translateZ(320px); z-index: 1; }
.testimonial-card:nth-child(5) { transform: rotateY(-120deg) translateZ(320px); z-index: 1; }

.testimonial-card.active {
  transform: rotateY(0deg) translateZ(320px) scale(1.08);
  box-shadow: 0 24px 64px var(--shadow-aqua-medium);
  z-index: 100;
}

.testimonial-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--crystal-mint), var(--deep-aqua));
  filter: saturate(1.05);
}

.testimonial-content {
  padding: 24px;
}

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

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

.testimonial-text {
  font-family: 'Figtree', sans-serif;
  font-style: italic;
  font-size: 16px;
  color: var(--light-slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--deep-aqua);
  background: linear-gradient(135deg, var(--deep-aqua), var(--fresh-mint));
}

.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-navy);
}

.testimonial-company {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: var(--soft-steel);
}

.testimonial-decor {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint));
  border-radius: 4px;
  margin-top: 16px;
}

.testimonial-corner {
  position: absolute;
  top: 0;
  right: 0;
}

.testimonial-corner svg {
  width: 24px;
  height: 24px;
  stroke: rgba(13, 148, 136, 0.3);
  stroke-width: 1;
  fill: none;
}

.carousel-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--deep-aqua);
}

.carousel-nav:hover svg {
  stroke: var(--white);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.carousel-prev {
  left: 20%;
}

.carousel-next {
  right: 20%;
}

.team-section {
  background: var(--ice-white);
  padding: 100px 0;
  position: relative;
}

.team-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.08);
  box-shadow: 0 20px 60px var(--glow-aqua);
  margin-bottom: -80px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.team-card:hover {
  box-shadow: 0 28px 80px var(--shadow-aqua);
  z-index: 10;
  transform: translateY(-4px);
}

.team-card:nth-child(even) {
  margin-left: 60px;
}

.team-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint));
}

.team-card-inner {
  display: flex;
  padding: 32px;
  gap: 24px;
}

.team-card-icon {
  flex-shrink: 0;
}

.team-card-icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.team-card-content {
  flex: 1;
}

.team-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--deep-navy);
}

.team-card-role {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: var(--deep-aqua);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.team-card-text {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--light-slate);
  margin-top: 8px;
  line-height: 1.6;
}

.team-card-spec {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--soft-steel);
  margin-top: 12px;
}

.faq-section {
  background: var(--crystal-mint);
  padding: 100px 0;
  position: relative;
}

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

.faq-central-node {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-central-node svg:nth-child(1) {
  position: absolute;
  width: 160px;
  height: 160px;
  fill: rgba(13, 148, 136, 0.08);
  stroke: var(--deep-aqua);
  stroke-width: 2;
}

.faq-central-node svg:nth-child(2) {
  width: 64px;
  height: 64px;
  stroke: var(--deep-aqua);
  stroke-width: 2;
  fill: none;
}

.faq-nodes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.faq-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.08);
  padding: 24px 28px;
  box-shadow: 0 16px 48px var(--glow-aqua);
  max-width: 280px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: scale(1.08);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 24px 64px var(--shadow-aqua);
  z-index: 10;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--deep-navy);
}

.faq-answer {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--light-slate);
  margin-top: 8px;
  line-height: 1.65;
}

.faq-connection {
  position: absolute;
  z-index: 0;
}

.faq-connection svg {
  stroke: rgba(13, 148, 136, 0.15);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 4;
}

.contact-section {
  background: var(--crystal-mint);
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

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

.contact-form-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-form-drop {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.contact-form-drop svg {
  width: 100%;
  height: 100%;
  fill: rgba(13, 148, 136, 0.15);
  stroke: var(--deep-aqua);
  stroke-width: 2;
}

.contact-form-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--soft-steel);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--soft-steel);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  transition: color 0.25s ease;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  background: transparent;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  color: var(--ocean-charcoal);
  transition: border-color 0.25s ease;
  outline: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--deep-aqua);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--deep-aqua);
}

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

.contact-form-submit {
  padding: 20px 48px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--deep-aqua), var(--fresh-mint));
  color: var(--white);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--shadow-aqua-strong);
  transition: all 0.25s ease-out;
  margin-top: 8px;
}

.contact-form-submit:hover {
  box-shadow: 0 16px 40px var(--shadow-aqua-strong);
}

.contact-info-wrapper {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 80px 48px;
  border: 1px solid rgba(13, 148, 136, 0.08);
  box-shadow: 0 20px 60px var(--glow-aqua);
  margin-left: -40px;
}

.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

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

.contact-info-icon {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--deep-aqua);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-text {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  color: var(--light-slate);
  line-height: 1.6;
}

.contact-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--soft-steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--glow-aqua);
  filter: grayscale(100%);
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.gallery-section {
  background: var(--ice-white);
  padding: 100px 0;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 48px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--crystal-mint), var(--deep-aqua));
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(13, 148, 136, 0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.thank-you-section {
  min-height: 100vh;
  background: var(--crystal-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  position: relative;
}

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

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--deep-aqua), var(--fresh-mint));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.thank-you-text {
  font-size: 18px;
  color: var(--light-slate);
  margin-bottom: 40px;
}

.thank-you-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-section {
  background: var(--ice-white);
  padding: 120px 0 100px;
  position: relative;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 36px;
  margin-bottom: 32px;
}

.legal-text {
  font-size: 16px;
  color: var(--light-slate);
  line-height: 1.9;
  margin-bottom: 24px;
}

.legal-text strong {
  color: var(--deep-navy);
  font-weight: 600;
}

.footer {
  background: var(--deep-navy);
  padding: 80px 0 120px;
  position: relative;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  color: var(--soft-steel);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--fresh-mint);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: var(--soft-steel);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--fresh-mint);
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--soft-steel);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-aqua);
  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: var(--fresh-mint);
}

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

.footer-bottom {
  margin-top: 60px;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.footer-legal-links a {
  font-size: 13px;
  color: var(--soft-steel);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: var(--fresh-mint);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.12);
  box-shadow: 0 20px 60px var(--shadow-aqua);
  padding: 24px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.cookie-banner-text {
  font-size: 14px;
  color: var(--light-slate);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner-text a {
  color: var(--deep-aqua);
  text-decoration: none;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--deep-aqua), var(--fresh-mint));
  color: var(--white);
}

.cookie-btn-accept:hover {
  box-shadow: 0 8px 24px var(--shadow-aqua-strong);
}

.cookie-btn-decline {
  background: transparent;
  border: 2px solid var(--lighter-slate);
  color: var(--ocean-charcoal);
}

.cookie-btn-decline:hover {
  border-color: var(--deep-aqua);
  color: var(--deep-aqua);
}

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

.scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--deep-aqua), var(--fresh-mint));
  border-radius: 4px;
}

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

@media (max-width: 1024px) {
  .header {
    display: none;
  }
  
  .mobile-header {
    display: block;
  }
  
  .hero {
    padding: 100px 24px 80px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-right {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper {
    padding-right: 0;
  }
  
  .about-image {
    height: 300px;
  }
  
  .about-content {
    padding: 48px 24px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-wrapper {
    margin-left: 0;
    margin-top: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  
  .team-card:nth-child(even) {
    margin-left: 0;
  }
  
  .faq-container {
    flex-direction: column;
    gap: 24px;
  }
  
  .faq-nodes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
  }
  
  .faq-card {
    position: relative;
    max-width: 100%;
  }
  
  .faq-central-node {
    display: none;
  }
  
  .faq-connection {
    display: none;
  }
  
  .testimonials-carousel {
    height: auto;
    overflow: hidden;
  }
  
  .testimonial-card {
    position: relative;
    transform: none !important;
    margin-bottom: 24px;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 16px 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
  
  .page-hero {
    padding: 100px 24px 40px;
  }
  
  .page-hero-content {
    margin-left: 0;
  }
  
  .carousel-nav {
    display: none;
  }
  
  .team-card-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .team-card-icon {
    display: flex;
    justify-content: center;
  }
}
