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

:root {
  --primary: #2d3436;
  --accent: #6c5ce7;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #636e72;
  --bg: #f5f6fa;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

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

.btn-accept,
.btn-learn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-accept:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-learn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-learn:hover {
  background: white;
  color: var(--dark);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 0;
  z-index: 1000;
}

.header.dark-header {
  position: relative;
  background: var(--dark);
}

.header.dark-header .logo,
.header.dark-header .nav-link {
  color: white;
}

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

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active::before {
  transform: translateY(-50%) scale(1);
}

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

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-primary {
  background: white;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

.services {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.services h2 {
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary);
  font-size: 2.5rem;
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.about {
  padding: 120px 0;
  background: white;
}

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

.about-text h2 {
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 2.5rem;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.1;
}

.about-image img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.process {
  padding: 120px 0;
  background: var(--bg);
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step h3 {
  margin-bottom: 15px;
}

.testimonials {
  padding: 120px 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary);
  font-size: 2.5rem;
}

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

.testimonial {
  background: var(--bg);
  padding: 40px;
  border-radius: 20px;
  color: var(--primary);
  position: relative;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  opacity: 0.9;
}

.cta {
  padding: 120px 0;
  background: var(--dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-hero {
  background: var(--dark);
  color: white;
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

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

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

.content-text h2 {
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 2.5rem;
}

.content-text p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
}

.content-image {
  position: relative;
}

.content-image::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  left: 20px;
  bottom: -20px;
  background: var(--accent);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.1;
}

.content-image img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features {
  padding: 120px 0;
  background: var(--bg);
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark);
}

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

.feature-item {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-item p {
  color: var(--gray);
}

.pricing {
  padding: 120px 0;
  background: white;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary);
  font-size: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  background: var(--accent);
  color: white;
  border: none;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
}

.pricing-card:not(.featured):hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.pricing-card h3 {
  margin-bottom: 20px;
}

.pricing-card.featured h3 {
  color: white;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.pricing-card.featured .price {
  color: white;
}

.pricing-card:not(.featured) .price {
  color: var(--accent);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.contact-section {
  padding: 120px 0;
  background: var(--bg);
}

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

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 2.5rem;
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--gray);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-item i {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.info-item p {
  margin: 0;
  color: var(--gray);
}

.contact-form-wrapper {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: var(--primary);
  margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray);
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.map-section {
  padding: 120px 0;
  background: white;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  font-size: 2.5rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.thank-you-main,
.error-main {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}

.thank-you-section,
.error-section {
  padding: 50px 0;
}

.thank-you-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content i {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 30px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.error-content h2 {
  color: var(--dark);
  margin-bottom: 15px;
}

.error-content p {
  margin-bottom: 30px;
  color: var(--gray);
}

.policy-section {
  padding: 140px 0 80px;
}

.policy-section h1 {
  color: var(--primary);
  margin-bottom: 10px;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
}

.policy-content h2 {
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  color: var(--gray);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
  margin-top: auto;
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

.footer-links a:hover {
  color: white;
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.2rem;
  }

  .header {
    position: fixed;
    background: var(--dark);
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 30px;
    transition: left 0.3s ease;
  }

  .nav .nav-link {
    font-size: 1rem;
  }

  .nav .nav-link::before {
    left: -25px;
    width: 8px;
    height: 8px;
  }

  .nav.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
    padding: 80px 0 50px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .services,
  .about,
  .process,
  .testimonials,
  .cta,
  .content-section,
  .features,
  .pricing,
  .contact-section,
  .map-section {
    padding: 80px 0;
  }

  .about-content,
  .content-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .process-steps,
  .testimonials-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .about-image::before,
  .content-image::before {
    display: none;
  }

  .error-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 14px;
  }

  .service-card,
  .feature-item {
    padding: 30px 20px;
  }

  .error-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }

  .container {
    padding: 0 12px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 30px 12px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }

  .services h2,
  .about-text h2,
  .process h2,
  .testimonials h2,
  .cta h2,
  .features h2,
  .pricing h2,
  .contact-info h2,
  .map-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .services-grid,
  .process-steps,
  .testimonials-grid,
  .features-grid {
    gap: 20px;
  }

  .service-card,
  .step,
  .testimonial,
  .feature-item {
    padding: 25px 15px;
  }

  .service-card i,
  .feature-item i {
    font-size: 2.2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .testimonial::before {
    font-size: 3.5rem;
    top: 15px;
    left: 20px;
  }

  .contact-form-wrapper {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .info-item {
    padding: 20px 15px;
    gap: 15px;
  }

  .info-item i {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .price {
    font-size: 2.2rem;
  }

  .error-content h1 {
    font-size: 3rem;
  }

  .footer-links {
    gap: 15px;
    flex-direction: column;
  }

  .privacy-content {
    flex-direction: column;
    padding: 0 12px;
  }

  .privacy-content p {
    min-width: auto;
    font-size: 13px;
  }

  .privacy-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn-accept,
  .btn-learn {
    padding: 8px 18px;
    font-size: 13px;
  }
}
