@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --aqua-white: #F8FCFC;
  --current-mist: #F0F8F8;
  --flow-light: #E4F4F4;
  --deep-ocean: #1A2828;
  --hydro-gray: #2A3838;
  --flow-cyan: #308CA0;
  --deep-neptune: #247088;
  --font-inter: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  background-color: var(--aqua-white);
  color: var(--hydro-gray);
  line-height: 1.78;
  font-size: 17px;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

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

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-neptune));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-neptune));
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 16px 64px rgba(48, 140, 160, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 80px rgba(48, 140, 160, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(48, 140, 160, 0.08);
  color: var(--flow-cyan);
  font-weight: 600;
  font-size: 13px;
  border-radius: 16px;
  border: 2px solid rgba(48, 140, 160, 0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(48, 140, 160, 0.15);
  border-color: var(--flow-cyan);
  transform: translateY(-2px);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--deep-ocean);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--hydro-gray);
  line-height: 1.6;
  max-width: 560px;
}

.mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.mesh-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatMesh 22s ease-in-out infinite alternate;
}

.mesh-spot:nth-child(1) {
  width: 600px;
  height: 600px;
  background: rgba(48, 140, 160, 0.06);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.mesh-spot:nth-child(2) {
  width: 500px;
  height: 500px;
  background: rgba(64, 160, 180, 0.04);
  bottom: 20%;
  left: -5%;
  animation-delay: -5s;
}

.mesh-spot:nth-child(3) {
  width: 450px;
  height: 450px;
  background: rgba(48, 160, 170, 0.05);
  top: 50%;
  right: 30%;
  animation-delay: -10s;
}

.mesh-spot:nth-child(4) {
  width: 550px;
  height: 550px;
  background: rgba(80, 180, 200, 0.03);
  bottom: -15%;
  left: 40%;
  animation-delay: -15s;
}

@keyframes floatMesh {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.1) translate(20px, -20px); opacity: 1; }
}

.floating-island {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  background: rgba(248, 252, 252, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 2px solid rgba(48, 140, 160, 0.10);
  box-shadow: 0 16px 64px rgba(48, 140, 160, 0.18);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.floating-island.scrolled {
  box-shadow: 0 24px 80px rgba(48, 140, 160, 0.28);
  border-color: rgba(48, 140, 160, 0.20);
}

.island-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(48, 140, 160, 0.10);
}

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

.island-logo span {
  font-weight: 800;
  font-size: 12px;
  color: var(--deep-ocean);
  letter-spacing: 0.05em;
}

.island-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.island-nav a {
  display: block;
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 500;
  color: var(--deep-ocean);
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.island-nav a:hover {
  color: var(--flow-cyan);
  background: rgba(48, 140, 160, 0.06);
  transform: scale(1.08);
}

.island-nav a.active {
  color: var(--flow-cyan);
  background: rgba(48, 140, 160, 0.08);
}

.island-cta {
  margin-top: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-neptune));
  color: white;
  font-weight: 700;
  font-size: 10px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.30);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.island-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(48, 140, 160, 0.40);
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  background: rgba(248, 252, 252, 0.99);
  border: 1px solid rgba(48, 140, 160, 0.20);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-ocean);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 252, 252, 0.99);
  backdrop-filter: blur(20px);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-overlay a {
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-ocean);
  transition: color 0.3s ease;
}

.mobile-menu-overlay a:hover {
  color: var(--flow-cyan);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: var(--deep-ocean);
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 0;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  color: var(--deep-ocean);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-title .char {
  display: inline-block;
  animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: translateY(100%);
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--hydro-gray);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

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

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 20px;
  background: rgba(48, 140, 160, 0.06);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-ocean);
}

.hero-badge svg {
  color: var(--flow-cyan);
}

.hero-visual {
  position: relative;
  padding-left: 40px;
}

.hero-frame {
  position: relative;
  border-radius: 28px;
  border: 2px solid rgba(48, 140, 160, 0.12);
  box-shadow: 0 48px 160px rgba(48, 140, 160, 0.14);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 64px 200px rgba(48, 140, 160, 0.20);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--hydro-gray);
  font-size: 11px;
  opacity: 0.6;
}

.hero-scroll-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.lens-effect {
  position: relative;
}

.lens-effect::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(48, 140, 160, 0.08);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease-out;
  z-index: 100;
}

.lens-effect:hover::before {
  transform: translate(-50%, -50%) scale(1);
  background: rgba(48, 140, 160, 0.04);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.card-float {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 82;
}

.card-float:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 80px rgba(48, 140, 160, 0.20);
  z-index: 96;
}

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--deep-ocean);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--hydro-gray);
  line-height: 1.6;
  max-width: 560px;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  padding: 80px 56px;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(48, 140, 160, 0.08);
  z-index: 82;
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 24px 80px rgba(48, 140, 160, 0.18);
  z-index: 96;
}

.bento-card.large {
  grid-column: span 2;
}

.bento-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

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

.bento-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-ocean);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14px;
  color: var(--hydro-gray);
  line-height: 1.6;
}

.bento-card-price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(48, 140, 160, 0.08);
  font-size: 15px;
  font-weight: 700;
  color: var(--flow-cyan);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 80px 56px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 82;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover {
  transform: translateY(-8px);
  z-index: 96;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-neptune));
  color: white;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 48px rgba(48, 140, 160, 0.30);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 16px 64px rgba(48, 140, 160, 0.40);
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-ocean);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--hydro-gray);
  line-height: 1.5;
}

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

.advantage-card {
  padding: 40px 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.08);
  border: 1px solid rgba(48, 140, 160, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 82;
}

.advantage-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 80px rgba(48, 140, 160, 0.18);
  z-index: 96;
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(48, 140, 160, 0.08);
  color: var(--flow-cyan);
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 15px;
  color: var(--hydro-gray);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 80px 56px;
  align-items: center;
}

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

.team-member {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(48, 140, 160, 0.4);
}

.team-member.active {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(48, 140, 160, 0.5);
}

.team-member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(48, 140, 160, 0.3);
}

.team-member-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.team-member-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.team-visual {
  position: relative;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 100px rgba(48, 140, 160, 0.15);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(48, 140, 160, 0.06);
  border: 1px solid rgba(48, 140, 160, 0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 82;
}

.faq-item:hover {
  z-index: 96;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-ocean);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--flow-cyan);
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(48, 140, 160, 0.08);
  color: var(--flow-cyan);
  font-size: 18px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--flow-cyan);
  color: white;
}

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

.faq-answer-content {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--hydro-gray);
  line-height: 1.7;
  border-left: 3px solid var(--flow-cyan);
  margin-left: 28px;
}

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

.reviews-carousel {
  padding: 80px 56px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.review-card {
  flex: 0 0 320px;
  padding: 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.10);
  border: 1px solid rgba(48, 140, 160, 0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 82;
}

.review-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 24px 80px rgba(48, 140, 160, 0.18);
  z-index: 96;
}

.review-card.active {
  transform: scale(1.08);
  box-shadow: 0 32px 100px rgba(48, 140, 160, 0.22);
  z-index: 100;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--hydro-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-ocean);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  color: #FFB800;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 80px 56px;
}

.contact-info {
  padding: 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.10);
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(48, 140, 160, 0.08);
  color: var(--flow-cyan);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-ocean);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--hydro-gray);
}

.contact-form {
  padding: 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.10);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-ocean);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(48, 140, 160, 0.15);
  border-radius: 14px;
  font-size: 15px;
  font-family: var(--font-inter);
  color: var(--deep-ocean);
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--flow-cyan);
  box-shadow: 0 0 0 4px rgba(48, 140, 160, 0.10);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-neptune));
  color: white;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 48px rgba(48, 140, 160, 0.30);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 64px rgba(48, 140, 160, 0.40);
}

.site-footer {
  background: var(--flow-light);
  border-top: 3px solid var(--flow-cyan);
  padding: 60px 56px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  color: var(--hydro-gray);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--flow-cyan);
}

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

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

.footer-logo span {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-ocean);
}

.footer-desc {
  font-size: 13px;
  color: var(--hydro-gray);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(48, 140, 160, 0.10);
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 600;
  color: var(--hydro-gray);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border: 2px solid rgba(48, 140, 160, 0.10);
  transition: all 0.4s ease;
}

.cookie-banner h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--hydro-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-btn-accept {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-neptune));
  color: white;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(48, 140, 160, 0.30);
}

.cookie-btn-decline {
  flex: 1;
  padding: 12px 20px;
  background: rgba(48, 140, 160, 0.06);
  color: var(--hydro-gray);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(48, 140, 160, 0.10);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
  background: rgba(48, 140, 160, 0.10);
}

.cookie-link {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  color: var(--flow-cyan);
  text-align: center;
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 82;
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 96;
  box-shadow: 0 24px 80px rgba(48, 140, 160, 0.20);
}

.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.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(48, 140, 160, 0.7), rgba(36, 112, 136, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

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

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 24px;
  margin-top: 48px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--hydro-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 20px 0 20px 24px;
}

.legal-content li {
  font-size: 15px;
  color: var(--hydro-gray);
  line-height: 1.7;
  margin-bottom: 10px;
}

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

.thank-you-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--deep-ocean);
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 18px;
  color: var(--hydro-gray);
  max-width: 500px;
  margin: 0 auto 40px;
}

@media (max-width: 1024px) {
  .main-content {
    padding-right: 0;
  }
  
  .floating-island {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
  }
  
  .hero-visual {
    padding-left: 0;
    margin-top: 48px;
  }
  
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 24px;
  }
  
  .bento-card.large {
    grid-column: span 2;
  }
  
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 24px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 24px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .page-hero {
    padding: 100px 24px 60px;
  }
  
  .services-bento {
    grid-template-columns: 1fr;
  }
  
  .bento-card.large {
    grid-column: span 1;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}