@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@700&display=swap');
:root {
  --color-aqua-stone: #FAF9F6;
  --color-parchment: #F5F5F4;
  --color-warm-cream: #F0EFEC;
  --color-deep-aqua: #155759;
  --color-teal-core: #0F4C5C;
  --color-cyber-cyan: #06B6D4;
  --color-deep-tech: #0891B2;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-smooth: 0.32s ease;
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-cyan-glow: 0 32px 128px rgba(6, 182, 212, 0.14);
  --shadow-cyan-deep: 0 64px 256px rgba(6, 182, 212, 0.08);
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
strong, b, p {
  color: inherit;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--color-aqua-stone);
  color: var(--color-teal-core);
  line-height: 1.78;
  font-size: 18px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 104px 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: 0.06em;
}
h1 {
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--color-deep-aqua);
}
h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--color-deep-tech);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.text-mono {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.62;
  color: var(--color-deep-aqua);
}
.text-accent {
  color: var(--color-cyber-cyan);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-cyber-cyan), var(--color-deep-tech));
  color: white;
  box-shadow: 0 14px 56px rgba(6, 182, 212, 0.48);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 72px rgba(6, 182, 212, 0.6);
  scale: 1.04;
}
.btn-secondary {
  background: var(--color-aqua-stone);
  color: var(--color-deep-aqua);
  border: 2px solid var(--color-cyber-cyan);
}
.btn-secondary:hover {
  background: var(--color-cyber-cyan);
  color: white;
}
.floating-pill {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto;
  max-width: 1200px;
  height: 68px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(254, 252, 247, 0.98), rgba(249, 250, 241, 0.98));
  backdrop-filter: blur(72px);
  -webkit-backdrop-filter: blur(72px);
  border: 2.5px solid rgba(6, 182, 212, 0.28);
  border-radius: 34px;
  box-shadow: 0 18px 72px rgba(6, 182, 212, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px;
  transition: all 0.4s ease-out;
}
.floating-pill.scrolled {
  background: rgba(254, 252, 247, 1);
  border-color: rgba(6, 182, 212, 0.36);
  box-shadow: 0 24px 96px rgba(6, 182, 212, 0.24);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo svg {
  width: 34px;
  height: 34px;
  stroke: 2.8px;
  stroke: var(--color-deep-tech);
  fill: none;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-deep-aqua);
  letter-spacing: -0.01em;
}
.nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.nav-items a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-deep-aqua);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-smooth);
}
.nav-items a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--color-cyber-cyan);
  transition: width var(--transition-smooth);
}
.nav-items a:hover {
  color: var(--color-cyber-cyan);
}
.nav-items a:hover::after {
  width: 100%;
}
.nav-items a:hover {
  transform: scale(1.04);
  z-index: 84;
}
.header-cta {
  padding: 12px 24px;
  font-size: 11px;
}
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(254, 252, 247, 0.98), rgba(249, 250, 241, 0.98));
  backdrop-filter: blur(72px);
  border: 2.5px solid rgba(6, 182, 212, 0.28);
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: 2.5px;
  stroke: var(--color-cyber-cyan);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 249, 245, 0.99);
  backdrop-filter: blur(72px);
  z-index: 10001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 80px 24px;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-deep-aqua);
  position: relative;
}
.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--color-cyber-cyan);
  transition: width var(--transition-smooth);
}
.mobile-nav a:hover::after {
  width: 100%;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-deep-aqua);
}
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 0;
  position: relative;
  padding-top: 128px;
  overflow: hidden;
}
.hero-content {
  padding-left: 72px;
  z-index: 2;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--color-teal-core);
  line-height: 1.6;
  max-width: 520px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.hero-cta {
  padding: 24px 52px;
  font-size: 14px;
  box-shadow: 0 20px 80px rgba(6, 182, 212, 0.5);
}
.hero-secondary-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal-core);
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  clip-path: polygon(0 6%, 100% 0, 100% 96%, 4% 100%);
  background: linear-gradient(135deg, rgba(250, 249, 245, 0.95), rgba(244, 244, 240, 0.92));
  border: 2px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 48px 192px rgba(6, 182, 212, 0.18);
  width: 80%;
  max-width: 600px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.particles-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(circle, rgba(6, 182, 212, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-pulse 8s ease-in-out infinite alternate;
}
@keyframes grid-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.02); opacity: 0.8; }
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-teal-core);
}
.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-cyber-cyan);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.services-grid,
.timeline,
.benefits-grid,
.process-accordion,
.team-section,
.faq-section,
.contact-grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.services-grid.visible,
.timeline.visible,
.benefits-grid.visible,
.process-accordion.visible,
.team-section.visible,
.faq-section.visible,
.contact-grid.visible {
  opacity: 1;
  transform: translateY(0);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--color-parchment);
  border: 2px solid rgba(6, 182, 212, 0.15);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}
.service-card.large {
  grid-column: span 2;
}
.service-card.wide {
  grid-column: span 2;
}
.service-card:hover {
  transform: translateY(-8px) skewX(-3deg);
  z-index: 92;
  box-shadow: var(--shadow-cyan-glow);
  border-color: var(--color-cyber-cyan);
}
.service-card-inner {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-deep-aqua);
}
.service-card p {
  font-size: 14px;
  color: var(--color-teal-core);
  line-height: 1.6;
}
.process-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--color-parchment);
  border-left: 4px solid transparent;
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
  cursor: pointer;
}
.accordion-item.active {
  border-left-color: var(--color-cyber-cyan);
  background: rgba(250, 249, 245, 0.8);
}
.accordion-item:hover {
  z-index: 92;
  transform: translateX(4px);
}
.accordion-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.accordion-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-cyber-cyan);
  transition: transform var(--transition-smooth);
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
}
.accordion-body {
  padding: 0 24px 24px;
}
.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-parchment);
  border: 3px solid var(--color-cyber-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
}
.timeline-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-cyber-cyan);
}
.timeline-node:hover .timeline-icon {
  background: var(--color-cyber-cyan);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}
.timeline-node:hover .timeline-icon svg {
  stroke: white;
}
.timeline-node h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline-node p {
  font-size: 14px;
  color: var(--color-teal-core);
  max-width: 160px;
}
.timeline-line {
  width: 80px;
  height: 3px;
  background: var(--color-cyber-cyan);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--color-parchment);
  padding: 32px;
  border: 2px solid rgba(6, 182, 212, 0.15);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-card:hover {
  flex-grow: 1.4;
  transform: skewX(-3deg);
  z-index: 92;
  border-color: var(--color-cyber-cyan);
  box-shadow: var(--shadow-cyan-glow);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 15px;
  color: var(--color-teal-core);
}
.stats-marquee {
  display: flex;
  overflow: hidden;
  gap: 80px;
  padding: 24px 0;
}
.stats-track {
  display: flex;
  gap: 80px;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--color-parchment);
  border: 2px solid var(--color-cyber-cyan);
  white-space: nowrap;
}
.stat-item span {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-cyber-cyan);
}
.team-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-item {
  padding: 24px;
  background: var(--color-parchment);
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.team-item:hover, .team-item.active {
  border-left-color: var(--color-cyber-cyan);
  background: rgba(250, 249, 245, 0.9);
}
.team-item h4 {
  font-size: 20px;
  margin-bottom: 4px;
}
.team-item p {
  font-size: 14px;
  color: var(--color-teal-core);
}
.team-photo {
  background: var(--color-warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-smooth);
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--color-parchment);
  padding: 24px;
  border: 2px solid rgba(6, 182, 212, 0.15);
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.faq-item:hover {
  z-index: 92;
  border-color: var(--color-cyber-cyan);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-deep-aqua);
}
.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-cyber-cyan);
  transition: transform var(--transition-smooth);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
  margin-top: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}
.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-smooth);
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-parchment);
  padding: 32px;
  border: 2px solid rgba(6, 182, 212, 0.15);
  transition: all var(--transition-smooth);
}
.review-card.active {
  transform: scale(1.15);
  z-index: 100;
  border-color: var(--color-cyber-cyan);
}
.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.review-quote {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-deep-aqua);
}
.review-date {
  font-size: 12px;
  color: var(--color-teal-core);
  margin-top: 4px;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-parchment);
  border: 2px solid var(--color-cyber-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}
.carousel-btn:hover {
  background: var(--color-cyber-cyan);
}
.carousel-btn:hover svg {
  stroke: white;
}
.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-cyber-cyan);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info {
  padding: 32px;
  background: var(--color-parchment);
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-cyber-cyan);
  flex-shrink: 0;
}
.contact-item div {
  display: flex;
  flex-direction: column;
}
.contact-item span:first-child {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-item span:last-child {
  font-size: 14px;
  color: var(--color-teal-core);
}
.contact-form {
  padding: 32px;
  background: var(--color-parchment);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--color-deep-aqua);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-aqua-stone);
  border: 2px solid var(--color-cyber-cyan);
  color: var(--color-teal-core);
  transition: all var(--transition-smooth);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-deep-tech);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-submit {
  width: 100%;
  padding: 20px;
  font-size: 14px;
}
footer {
  background: var(--color-parchment);
  border-top: 3px solid var(--color-cyber-cyan);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-deep-tech);
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-deep-aqua);
}
.footer-desc {
  font-size: 14px;
  color: var(--color-teal-core);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-deep-aqua);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--color-teal-core);
  transition: color var(--transition-smooth);
}
.footer-col ul li a:hover {
  color: var(--color-cyber-cyan);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-cyber-cyan);
}
.footer-contact-item span {
  font-size: 14px;
}
.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(6, 182, 212, 0.15);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-teal-core);
}
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(254, 252, 247, 0.98), rgba(249, 250, 241, 0.98));
  backdrop-filter: blur(72px);
  border: 2px solid var(--color-cyber-cyan);
  border-radius: 16px;
  box-shadow: 0 24px 96px rgba(6, 182, 212, 0.24);
  z-index: 9997;
}
.cookie-banner h4 {
  font-size: 16px;
  margin-bottom: 12px;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--color-teal-core);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 20px;
  font-size: 12px;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-cyber-cyan), var(--color-deep-tech));
  color: white;
  border: none;
}
.cookie-btn-decline {
  background: transparent;
  border: 2px solid var(--color-cyber-cyan);
  color: var(--color-deep-aqua);
}
/* Legal Pages Styles */
.legal-page {
  padding: 128px 0 80px;
  position: relative;
}
.legal-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(circle, rgba(6, 182, 212, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.legal-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.legal-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 16px;
}
.legal-header .hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.legal-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.legal-section {
  background: var(--color-parchment);
  border: 2px solid rgba(6, 182, 212, 0.12);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  transition: all var(--transition-smooth);
}
.legal-section:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 16px 64px rgba(6, 182, 212, 0.1);
  transform: translateY(-4px);
}
.legal-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-deep-aqua);
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 12px;
}
.legal-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--color-cyber-cyan), var(--color-deep-tech));
  border-radius: 2px;
}
.legal-section p {
  color: var(--color-teal-core);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 12px;
}
.legal-section ul {
  margin: 16px 0;
  padding-left: 20px;
}
.legal-section ul li {
  color: var(--color-teal-core);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  list-style: none;
}
.legal-section ul li::before {
  content: '›';
  position: absolute;
  left: -20px;
  color: var(--color-cyber-cyan);
  font-weight: 700;
}
.legal-section ul li strong {
  color: var(--color-deep-aqua);
}
.legal-highlight {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(8, 145, 178, 0.05));
  border-left: 4px solid var(--color-cyber-cyan);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.legal-highlight p {
  margin-bottom: 0;
}
.legal-contact {
  background: var(--color-warm-cream);
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.legal-contact h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-deep-aqua);
}
.legal-contact p {
  margin-bottom: 24px;
}
.legal-contact .btn {
  display: inline-flex;
}

.lens-cursor {
  position: fixed;
  width: 120px;
  height: 120px;
  border: 2.5px solid var(--color-cyber-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
  transition: transform 0.22s ease-out;
  mix-blend-mode: normal;
  opacity: 0;
}
.lens-cursor.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.lens-cursor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-internal {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 128px 72px 64px;
  position: relative;
  overflow: hidden;
}
.hero-internal h1 {
  font-size: clamp(4rem, 8vw, 7rem);
}
.hero-internal-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-internal-card {
  clip-path: polygon(0 6%, 100% 0, 100% 96%, 4% 100%);
  width: 80%;
  max-width: 500px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hero-internal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .floating-pill {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 120px 24px 64px;
  }
  .hero-content {
    padding-left: 0;
    padding-top: 48px;
  }
  .hero-visual {
    min-height: 50vh;
  }
  .hero-internal {
    grid-template-columns: 1fr;
    padding: 120px 24px 48px;
  }
  .hero-internal-image {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.large,
  .service-card.wide {
    grid-column: span 1;
  }
  .timeline {
    flex-direction: column;
    gap: 24px;
  }
  .timeline-line {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .team-section {
    grid-template-columns: 1fr;
  }
  .faq-section {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .reviews-track {
    flex-direction: column;
  }
  .review-card {
    flex: 0 0 100%;
  }
  .cookie-banner {
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 48px);
  }
}
@media (max-width: 576px) {
  .section-padding {
    padding: 64px 0;
  }
  h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
  h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .hero-cta {
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .legal-page {
    padding: 100px 0 60px;
  }
  .legal-header {
    margin-bottom: 40px;
  }
  .legal-section {
    padding: 24px;
    margin-bottom: 16px;
  }
  .legal-section h2 {
    font-size: 1.5rem;
  }
  .legal-section p {
    font-size: 15px;
  }
  .legal-contact {
    padding: 24px;
  }
}