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

:root {
  --hygiene-white: #FAFAFA;
  --sterile-cream: #F7F7F5;
  --deep-onyx: #0A0A0A;
  --warm-charcoal: #3A3A3A;
  --silver-gray: #9A9A9A;
  --electric-mint: #00E5A0;
  --digital-cyan: #00D4FF;
  --gradient-mint: linear-gradient(135deg, #00E5A0, #00B87A);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--warm-charcoal);
  background-color: var(--hygiene-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--deep-onyx);
  letter-spacing: -0.03em;
}

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

ul, ol {
  list-style: none;
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

strong, b, p {
  color: inherit;
}

main {
  position: relative;
}

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

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

.fluid-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  filter: blur(120px);
  opacity: 0.6;
  animation: fluidMove 40s ease-in-out infinite alternate;
}

.fluid-layer-1 {
  top: -50%;
  left: -50%;
  background: linear-gradient(135deg, var(--hygiene-white) 0%, #F5F5F3 50%, #FAF0F5 100%);
}

.fluid-layer-2 {
  top: -30%;
  left: -40%;
  background: linear-gradient(45deg, #F0F5FA 0%, var(--sterile-cream) 50%, #F5F0FA 100%);
  animation-delay: -20s;
}

@keyframes fluidMove {
  0% { transform: translateX(-80px) translateY(-40px) scale(0.92); }
  100% { transform: translateX(40px) translateY(40px) scale(1.08); }
}

.particles-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(0, 229, 160, 0.2);
  border-radius: 0;
  animation: particleMove 35s ease-in-out infinite alternate;
}

.grid-line {
  position: absolute;
  stroke: rgba(0, 212, 255, 0.08);
  stroke-width: 1px;
}

@keyframes particleMove {
  0% { transform: translateX(-50px) translateY(-25px) scale(0.95); }
  100% { transform: translateX(25px) translateY(25px) scale(1.05); }
}

.kinetic-bg {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 200px;
  color: var(--deep-onyx);
  opacity: 0.04;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
}

.kinetic-bg-1 {
  top: 20%;
  left: 0;
  width: 100%;
  animation: kineticScroll1 70s linear infinite;
}

.kinetic-bg-2 {
  top: 55%;
  right: 0;
  width: 100%;
  text-align: right;
  letter-spacing: 0.15em;
  animation: kineticScroll2 60s linear infinite reverse;
}

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

@keyframes kineticScroll2 {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

.glow-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bottom-bar {
  position: fixed !important;
  top: auto;
  bottom: 24px;
  left: 16px;
  right: 16px;
  max-width: 800px;
  margin: 0 auto;
  height: 72px;
  background: rgba(250, 250, 250, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 160, 0.15);
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.12);
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.bottom-bar.scrolled {
  top: auto;
  height: 56px;
  bottom: 16px;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.1);
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--electric-mint), var(--deep-onyx));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: var(--deep-onyx);
}

.nav-segments {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 229, 160, 0.1);
}

.nav-segment {
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--warm-charcoal);
  transition: all 0.25s ease;
  cursor: pointer;
}

.nav-segment:hover {
  color: var(--electric-mint);
  background: rgba(0, 229, 160, 0.06);
}

.nav-segment.active {
  color: var(--electric-mint);
  border-bottom: 2px solid var(--electric-mint);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-button {
  padding: 10px 20px;
  background: var(--gradient-mint);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.01em;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 229, 160, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cta-button:hover {
  box-shadow: 0 8px 28px rgba(0, 229, 160, 0.4);
  transform: translateY(-2px);
}

.phone-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--electric-mint);
  letter-spacing: 0.02em;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 80px 140px 80px;
  z-index: 4;
}

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

.hero-content {
  grid-column: span 6;
  z-index: 1;
}

.hero-visual {
  grid-column: span 6;
  z-index: 0;
}

.bento-decor {
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
}

.bento-decor svg {
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: 64px;
  line-height: 0.84;
  letter-spacing: -0.03em;
  color: var(--deep-onyx);
  max-width: 560px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--warm-charcoal);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 24px;
}

.mint-markers {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.mint-marker {
  width: 12px;
  height: 12px;
  background: var(--electric-mint);
  filter: drop-shadow(0 4px 12px rgba(0, 229, 160, 0.3));
}

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

.primary-cta {
  padding: 22px 48px;
  background: var(--gradient-mint);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(0, 229, 160, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.primary-cta:hover {
  box-shadow: 0 16px 48px rgba(0, 229, 160, 0.4);
  transform: translateY(-3px);
}

.secondary-cta {
  padding: 20px 40px;
  background: transparent;
  border: 2px solid var(--deep-onyx);
  color: var(--deep-onyx);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.secondary-cta:hover {
  border-color: var(--electric-mint);
  color: var(--electric-mint);
}

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

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

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

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

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 160, 0.12);
  border-radius: 0;
  padding: 16px 20px;
  box-shadow: 0 20px 56px rgba(10, 10, 10, 0.1);
}

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

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

.floating-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--deep-onyx);
}

.floating-card-value {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--electric-mint);
}

.section-title {
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--deep-onyx);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--warm-charcoal);
}

.hard-cut {
  height: 2px;
  width: 100%;
  background: var(--electric-mint);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 160, 0.08);
  border-radius: 0;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0, 229, 160, 0.1);
}

.service-card-top {
  border-top: 3px solid var(--electric-mint);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  stroke: var(--electric-mint);
  stroke-width: 2px;
  fill: none;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-onyx);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--warm-charcoal);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
}

.split-divider {
  position: absolute;
  left: 55%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--electric-mint), var(--digital-cyan), var(--electric-mint));
  transform: translateX(-50%);
}

.split-image {
  position: relative;
  overflow: hidden;
}

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

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

.dark-section {
  background: var(--deep-onyx);
  color: white;
}

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

.dark-section p {
  color: rgba(255, 255, 255, 0.7);
}

.process-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.process-header {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(16px);
  padding: 40px 80px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
}

.process-scroll {
  position: relative;
  height: calc(100vh - 140px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.process-card {
  flex-shrink: 0;
  width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 160, 0.08);
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08);
  cursor: grab;
}

.process-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: rgba(0, 229, 160, 0.12);
  margin-bottom: 4px;
}

.process-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  stroke: var(--electric-mint);
  stroke-width: 2px;
  fill: none;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-onyx);
}

.process-desc {
  font-size: 13px;
  color: var(--warm-charcoal);
  margin-top: 6px;
  line-height: 1.5;
}

.process-img {
  height: 100px;
  margin-top: 12px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.98);
}

.process-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--electric-mint), var(--digital-cyan));
  margin-top: 16px;
}

.marquee-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  overflow: hidden;
}

.marquee-text {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-onyx);
  display: flex;
  align-items: center;
  gap: 32px;
}

.marquee-divider {
  width: 8px;
  height: 8px;
  background: var(--electric-mint);
}

@keyframes marquee {
  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(16px);
  border: 1px solid rgba(0, 229, 160, 0.1);
  border-radius: 0;
  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 24px 72px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 229, 160, 0.15);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  stroke: var(--digital-cyan);
  stroke-width: 2px;
  fill: none;
}

.advantage-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--deep-onyx);
}

.advantage-label {
  font-size: 11px;
  color: var(--warm-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stacking-cards {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.stacking-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 0;
  border: 1px solid rgba(0, 229, 160, 0.08);
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08);
  padding: 0;
  margin-bottom: -80px;
  position: relative;
  z-index: 1;
}

.stacking-card:hover {
  z-index: 10;
  transform: translateY(-4px);
}

.stacking-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--electric-mint), var(--digital-cyan));
}

.stacking-content {
  display: flex;
  padding: 28px;
  gap: 24px;
}

.stacking-icon {
  width: 48px;
  height: 48px;
  margin: 28px 0 28px 28px;
  stroke: var(--electric-mint);
  stroke-width: 2px;
  fill: none;
  flex-shrink: 0;
}

.stacking-info h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-onyx);
  margin-bottom: 4px;
}

.stacking-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--electric-mint);
}

.stacking-desc {
  font-size: 12px;
  color: var(--warm-charcoal);
  margin-top: 4px;
}

.stacking-meta {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--silver-gray);
}

.team-carousel {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.team-card {
  width: 300px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 160, 0.08);
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08);
  position: absolute;
  padding: 0;
}

.team-card img {
  height: 120px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.98);
}

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

.team-decor-line {
  width: 32px;
  height: 2px;
  background: rgba(0, 229, 160, 0.2);
  margin-bottom: 12px;
}

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

.star {
  width: 16px;
  height: 16px;
  fill: var(--electric-mint);
}

.team-quote {
  font-style: italic;
  font-size: 15px;
  color: var(--warm-charcoal);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.team-avatar {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 160, 0.15);
  border-radius: 0;
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-onyx);
}

.team-role {
  font-size: 12px;
  color: var(--silver-gray);
}

.team-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--electric-mint), var(--digital-cyan));
  margin-top: 16px;
}

.nav-arrow {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 160, 0.1);
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.nav-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--electric-mint);
  stroke-width: 2px;
}

.nav-arrow-left {
  left: -80px;
}

.nav-arrow-right {
  right: -80px;
}

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

.faq-panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 0;
  border: 1px solid rgba(0, 229, 160, 0.08);
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08);
  margin-bottom: 0;
}

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

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

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

.faq-icon {
  width: 44px;
  height: 44px;
  margin-right: 16px;
  stroke: var(--electric-mint);
  stroke-width: 2px;
  fill: none;
}

.faq-title {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-onyx);
  flex: 1;
}

.faq-desc {
  font-size: 14px;
  color: var(--warm-charcoal);
  line-height: 1.6;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  stroke: var(--silver-gray);
  stroke-width: 2px;
  transition: all 0.3s ease;
}

.faq-panel.active .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--electric-mint);
}

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

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

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

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

.faq-answer-text {
  font-size: 16px;
  color: var(--warm-charcoal);
  line-height: 1.75;
  margin-top: 12px;
}

.faq-answer-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--electric-mint);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
}

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

.review-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 160, 0.08);
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.review-item:hover {
  background: white;
  border-color: rgba(0, 229, 160, 0.15);
  box-shadow: 0 24px 64px rgba(0, 229, 160, 0.08);
  transform: translateX(8px);
}

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

.review-icon {
  width: 48px;
  height: 48px;
  stroke: var(--electric-mint);
  stroke-width: 2px;
  fill: none;
  flex-shrink: 0;
}

.review-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-onyx);
}

.review-subtitle {
  font-size: 14px;
  color: var(--electric-mint);
  margin-top: 4px;
}

.reveal-area {
  width: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item:hover .reveal-area {
  width: 280px;
}

.review-img {
  height: 80px;
  width: 280px;
  object-fit: cover;
  border-radius: 0;
}

.review-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--electric-mint), var(--digital-cyan));
  margin-top: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: 50% 50%;
}

.contact-divider {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--electric-mint), var(--digital-cyan), var(--electric-mint));
  transform: translateX(-50%);
}

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

.contact-header {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--deep-onyx);
  margin-bottom: 8px;
}

.contact-subheader {
  font-size: 14px;
  color: var(--silver-gray);
  margin-bottom: 28px;
}

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

.form-label {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--silver-gray);
  transition: all 0.25s ease;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border-bottom: 2px solid rgba(10, 10, 10, 0.1);
  border-radius: 0;
  font-size: 16px;
  color: var(--deep-onyx);
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-color: var(--electric-mint);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -20px;
  font-size: 10px;
  color: var(--electric-mint);
}

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

.submit-button {
  padding: 18px 44px;
  background: var(--gradient-mint);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 229, 160, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.submit-button:hover {
  box-shadow: 0 8px 28px rgba(0, 229, 160, 0.3);
}

.contact-info {
  padding: 80px 48px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 0;
  border: 1px solid rgba(0, 229, 160, 0.08);
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08);
}

.contact-block {
  padding: 20px 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  stroke: var(--electric-mint);
  stroke-width: 1.5px;
  fill: none;
  margin-bottom: 8px;
}

.contact-text {
  font-size: 15px;
  color: var(--warm-charcoal);
}

.contact-divider-line {
  height: 1px;
  background: rgba(0, 229, 160, 0.1);
  margin: 20px 0;
}

.map-container {
  margin-top: 24px;
  filter: grayscale(100%);
  border-radius: 0;
  border: 1px solid rgba(0, 229, 160, 0.08);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  bottom: 120px;
  left: 24px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 160, 0.15);
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.15);
  z-index: 9999;
}

.cookie-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-onyx);
  margin-bottom: 12px;
}

.cookie-desc {
  font-size: 13px;
  color: var(--warm-charcoal);
  margin-bottom: 16px;
  line-height: 1.5;
}

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

.cookie-accept {
  flex: 1;
  padding: 12px 20px;
  background: var(--gradient-mint);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-decline {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid var(--warm-charcoal);
  color: var(--warm-charcoal);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-decline:hover {
  border-color: var(--electric-mint);
  color: var(--electric-mint);
}

.footer {
  background: var(--deep-onyx);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  position: relative;
}

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

.footer-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

.mobile-nav-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--deep-onyx);
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.mobile-nav-item:hover {
  color: var(--electric-mint);
}

.mobile-nav-line {
  width: 60px;
  height: 2px;
  background: var(--electric-mint);
  margin: 0 auto;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 160, 0.1);
  border: none;
  color: var(--deep-onyx);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover {
  background: rgba(0, 229, 160, 0.2);
  color: var(--electric-mint);
}

.mobile-contact-info {
  margin-top: 40px;
  text-align: center;
}

.mobile-phone {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--electric-mint);
}

.mobile-address {
  font-size: 13px;
  color: var(--silver-gray);
  margin-top: 8px;
}

.hamburger {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 160, 0.08);
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  display: none;
  visibility: hidden;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--electric-mint);
}

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

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

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

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

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

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

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

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

.reveal-bento {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}

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

@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

.count-up {
  animation: countUp 2.5s ease-out;
}

@media (max-width: 1024px) {
  section {
    padding: 60px 20px !important;
  }
  .hero-section {
    padding: 100px 40px 160px 40px !important;
  }

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

  .hero-content,
  .hero-visual {
    grid-column: span 1;
  }

  .bento-grid-visual {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-divider {
    display: none;
  }

  .process-header {
    padding: 40px;
  }

  .process-scroll {
    padding: 0 40px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .faq-panel:nth-child(even) {
    margin-top: 0;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-segments {
    display: none;
  }

  .hamburger {
    display: flex;
    visibility: visible;
  }

  .bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: auto;
    left: 16px;
    right: 16px;
    height: 64px;
    bottom: 16px;
    padding: 0 16px;
  }

  .cta-group .cta-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

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

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 80px 24px 160px 24px;
  }

  .bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: auto;
    left: 16px;
    right: 16px;
    height: 64px;
    bottom: 16px;
    padding: 0 16px;
  }

  .bottom-bar .logo-text {
    display: none;
  }

  .bottom-bar .phone-number {
    display: none;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .bento-grid-visual {
    display: none;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .team-carousel {
    height: auto;
  }

  .team-card {
    position: relative;
    margin-bottom: 20px;
  }

  .nav-arrow {
    display: none;
  }

  .review-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .reveal-area {
    width: 100% !important;
    margin-top: 16px;
  }

  .review-img {
    width: 100%;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .floating-card {
    display: none;
  }
}