:root {
  --teal-primary: #14B8A6;
  --teal-light: #2DD4BF;
  --teal-dark: #0D9488;
  
  --blue-primary: #3B82F6;
  --blue-light: #60A5FA;
  --blue-dark: #2563EB;
  
  --green-accent: #10B981;
  --purple-accent: #8B5CF6;
  
  --slate-dark: #0F172A;
  --slate-medium: #334155;
  --slate-light: #E2E8F0;
  --white: #FFFFFF;
  
  --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--slate-dark);
  background-color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--text-base);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--teal-primary);
  border: 2px solid var(--teal-primary);
}

.btn-secondary:hover {
  background: var(--teal-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  color: var(--slate-dark);
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.center {
  text-align: center;
}

.section-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-primary));
  border-radius: 2px;
  margin-bottom: 30px;
}

.section-accent.center {
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 100px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--slate-light);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.logo-text {
  font-size: var(--text-2xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--slate-medium);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-primary));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--teal-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--teal-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  overflow: hidden;
  margin-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 50px;
  color: var(--teal-light);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 700;
  margin-bottom: 25px;
  font-family: var(--font-secondary);
  line-height: 1.1;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-xl);
  margin-bottom: 40px;
  color: var(--slate-light);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

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

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--slate-light);
}

.about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--slate-medium);
  font-size: var(--text-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--slate-light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.value-item h3 {
  font-size: var(--text-lg);
  margin-bottom: 10px;
  color: var(--slate-dark);
  font-weight: 600;
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--slate-medium);
}

.about-visual {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual::before {
  content: '💎';
  font-size: 200px;
  opacity: 0.2;
}

.services {
  background: linear-gradient(180deg, var(--slate-light) 0%, var(--white) 100%);
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--teal-primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 15px;
  color: var(--slate-dark);
  font-weight: 600;
}

.service-card p {
  color: var(--slate-medium);
  margin-bottom: 20px;
}

.service-link {
  color: var(--teal-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--blue-primary);
  gap: 10px;
}

.why-choose {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 15px;
  border: 1px solid var(--slate-light);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--teal-primary);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: var(--text-lg);
  margin-bottom: 10px;
  color: var(--slate-dark);
  font-weight: 600;
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--slate-medium);
}

.how-it-works {
  background: linear-gradient(135deg, var(--slate-dark), var(--slate-medium));
  color: var(--white);
}

.how-it-works .section-title {
  color: var(--white);
  -webkit-text-fill-color: initial;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.process-step h3 {
  font-size: var(--text-xl);
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 600;
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--slate-light);
}

.contact {
  background: var(--slate-light);
}

.contact-intro {
  text-align: center;
  color: var(--slate-medium);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-lg);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--slate-dark);
  font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--slate-light);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--teal-primary);
}

.checkbox-group label {
  font-size: var(--text-sm);
  color: var(--slate-medium);
  line-height: 1.6;
}

.checkbox-group a {
  color: var(--teal-primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.privacy-note {
  font-size: var(--text-sm);
  color: var(--slate-medium);
  margin-bottom: 25px;
  text-align: center;
  padding: 15px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 10px;
}

.privacy-note a {
  color: var(--teal-primary);
  text-decoration: none;
  font-weight: 600;
}

.privacy-note a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.3);
}

.footer {
  background: var(--slate-dark);
  color: var(--slate-light);
  padding: 80px 0 30px;
}

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

.footer-logo-text {
  font-size: var(--text-2xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--teal-light);
  margin-bottom: 20px;
  font-size: var(--text-sm);
}

.footer-contact {
  font-size: var(--text-sm);
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--teal-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--teal-primary);
}

.footer-column h4 {
  color: var(--teal-light);
  margin-bottom: 20px;
  font-size: var(--text-lg);
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 12px;
  font-size: var(--text-sm);
}

.footer-links a {
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  font-size: var(--text-sm);
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: var(--text-xs);
  color: var(--slate-medium);
}

.footer-credit {
  margin-top: 15px;
  font-size: 0.65rem;
  color: #64748B;
  opacity: 0.7;
}

.footer-credit a {
  color: #94A3B8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-credit a:hover {
  opacity: 1;
}

.legal-page {
  max-width: 900px;
  margin: 140px auto 60px;
  padding: 40px;
}

.legal-page h1 {
  font-size: var(--text-4xl);
  margin-bottom: 15px;
  color: var(--slate-dark);
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page .date-info {
  color: var(--slate-medium);
  margin-bottom: 40px;
  font-size: var(--text-sm);
}

.legal-page h2 {
  font-size: var(--text-2xl);
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--slate-dark);
  font-weight: 600;
}

.legal-page h3 {
  font-size: var(--text-xl);
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--slate-medium);
  font-weight: 600;
}

.legal-page p {
  margin-bottom: 15px;
  color: var(--slate-medium);
  line-height: 1.8;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 20px;
  margin-left: 30px;
  color: var(--slate-medium);
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--teal-primary);
  text-decoration: none;
  font-weight: 600;
}

.legal-page a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--slate-light);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

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

  .services-grid,
  .features-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    padding: 30px;
  }
}
