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

:root {
  --crystalline-aqua: #00D4AA;
  --crystalline-light: #E0F7FA;
  --crystalline-deep: #0B3D35;
  --crystalline-blue: #0077B6;
  --electric-pop: #00B4D8;
  --glass-white: rgba(255, 255, 255, 0.92);
  --glass-frost: rgba(224, 247, 250, 0.7);
  --gradient-primary: linear-gradient(135deg, #00D4AA 0%, #0077B6 50%, #00B4D8 100%);
  --gradient-soft: linear-gradient(180deg, #E0F7FA 0%, #FFFFFF 100%);
  --shadow-glass: 0 8px 32px rgba(0, 212, 170, 0.15);
  --shadow-elevated: 0 20px 60px rgba(0, 59, 53, 0.12);
  --radius-crystalline: 16px;
  --radius-soft: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient-soft);
  color: var(--crystalline-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

strong, p, b {
  color: inherit;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.text-dark {
  color: var(--crystalline-deep) !important;
}

.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-crystalline);
  box-shadow: var(--shadow-glass);
}

.glass-card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}


.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-soft);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--crystalline-deep);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-soft);
  border: 2px solid var(--crystalline-aqua);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
}

.btn-secondary:hover {
  background: var(--crystalline-aqua);
  color: white;
}


.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.15rem;
  color: rgba(11, 61, 53, 0.7);
  max-width: 600px;
  margin: 0 auto;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--crystalline-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  color: var(--crystalline-deep);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(0, 212, 170, 0.1);
  color: var(--crystalline-aqua);
}

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 12px 24px;
  margin-left: 8px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}


.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--crystalline-deep);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section .container {
  z-index: 10;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 247, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--crystalline-aqua);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--electric-pop);
  bottom: -150px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--crystalline-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--crystalline-deep);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--crystalline-aqua);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(11, 61, 53, 0.75);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 10;
}

.hero-image-main {
  border-radius: var(--radius-crystalline);
  box-shadow: var(--shadow-elevated);
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--crystalline-aqua);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: rgba(11, 61, 53, 0.7);
  margin-top: 8px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: var(--radius-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: rgba(11, 61, 53, 0.7);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--crystalline-aqua);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(11, 61, 53, 0.6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--crystalline-blue);
  font-weight: 600;
}

.service-link:hover {
  gap: 12px;
}


.features-section {
  background: var(--crystalline-deep);
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-item {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-crystalline);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 36px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: rgba(11, 61, 53, 0.8);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.9rem;
  color: rgba(11, 61, 53, 0.6);
}


.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 32px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 24px;
}

.process-step h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.process-step p {
  color: rgba(11, 61, 53, 0.7);
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0, 212, 170, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crystalline-deep);
  font-family: 'Space Grotesk', sans-serif;
}

.faq-question:hover {
  background: rgba(0, 212, 170, 0.05);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-content {
  padding: 0 28px 24px;
  color: rgba(11, 61, 53, 0.75);
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-info p {
  color: rgba(11, 61, 53, 0.7);
  margin-bottom: 40px;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 170, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--crystalline-blue);
}

.contact-form-wrapper {
  background: white;
  padding: 48px;
  border-radius: var(--radius-crystalline);
  box-shadow: var(--shadow-glass);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--crystalline-deep);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 212, 170, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--crystalline-aqua);
  box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
}

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


.site-footer {
  background: var(--crystalline-deep);
  color: white;
  padding: 80px 0 0;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: white;
}

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

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--crystalline-aqua);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--crystalline-aqua);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 420px;
  background: white;
  padding: 28px;
  border-radius: var(--radius-crystalline);
  box-shadow: var(--shadow-elevated);
  z-index: 9999;
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.cookie-consent-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--crystalline-deep);
}

.cookie-consent-banner p {
  font-size: 0.9rem;
  color: rgba(11, 61, 53, 0.7);
  margin-bottom: 20px;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--gradient-primary);
  color: white;
}

.cookie-btn-decline {
  background: rgba(0, 212, 170, 0.1);
  color: var(--crystalline-deep);
  border: 1px solid rgba(0, 212, 170, 0.3);
}


@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  
  .cookie-consent-banner {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}


.water-droplet {
  position: relative;
  overflow: hidden;
}

.water-droplet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.water-droplet:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}


.asym-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.asym-grid-reverse {
  direction: rtl;
}

.asym-grid-reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .asym-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .asym-grid-reverse {
    direction: ltr;
  }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-crystalline);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 53, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay h4 {
  color: white;
  font-size: 1.1rem;
}


.service-map {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
  border-radius: var(--radius-crystalline);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 212, 170, 0.4);
}

.service-map-text {
  text-align: center;
  color: var(--crystalline-deep);
}

.service-map-text h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-map-text p {
  color: rgba(11, 61, 53, 0.7);
}


.blog-card {
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(11, 61, 53, 0.6);
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.blog-card p {
  color: rgba(11, 61, 53, 0.7);
  margin-bottom: 16px;
}


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

.legal-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px;
  color: var(--crystalline-deep);
}

.legal-content h3 {
  font-size: 1.35rem;
  margin: 30px 0 16px;
  color: var(--crystalline-deep);
}

.legal-content p {
  margin-bottom: 16px;
  color: rgba(11, 61, 53, 0.8);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  color: rgba(11, 61, 53, 0.8);
}


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

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 32px;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 1.15rem;
  color: rgba(11, 61, 53, 0.7);
  margin-bottom: 32px;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 4px solid var(--crystalline-aqua);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-card p {
  color: rgba(11, 61, 53, 0.6);
  font-size: 0.95rem;
}


.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-crystalline);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.pricing-table th,
.pricing-table td {
  padding: 20px 24px;
  text-align: left;
}

.pricing-table th {
  background: var(--crystalline-deep);
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-table tr {
  border-bottom: 1px solid rgba(0, 212, 170, 0.15);
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table tr:hover {
  background: rgba(0, 212, 170, 0.05);
}

.pricing-highlight {
  background: rgba(0, 212, 170, 0.1);
}

@media (max-width: 768px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
  
  .pricing-table th,
  .pricing-table td {
    min-width: 200px;
  }
}