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

:root {
  --primary: #e0e7ff;
  --secondary: #c7d2fe;
  --accent: #a5b4fc;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
}

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

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

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-popup.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  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: 10px;
}

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

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

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

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

.btn-learn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 8px;
  background: var(--light);
  padding: 6px;
  border-radius: 50px;
}

.nav-link {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.nav-link.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

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

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

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

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

section {
  padding: 80px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  margin: 0;
}

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

.service-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.service-card i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

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

.service-card p {
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}

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

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

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.1;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  margin-bottom: 24px;
}

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

.process {
  background: white;
}

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

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

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--primary);
  opacity: 0.3;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

.testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 200px;
  color: var(--primary);
  opacity: 0.05;
  font-family: Georgia, serif;
}

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

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
}

.testimonial-text {
  margin-bottom: 24px;
}

.testimonial-text p {
  font-style: italic;
  color: var(--gray);
  margin: 0;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 16px;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 13px;
}

.cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

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

.cta .btn-primary:hover {
  background: var(--light);
}

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

.content-wrapper.reverse {
  direction: rtl;
}

.content-wrapper.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 24px;
}

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

.content-image {
  position: relative;
}

.content-image img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.professional-intro,
.seasonal-intro {
  padding: 80px 0;
}

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

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

.benefit-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.benefit-card:hover::before {
  width: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.benefit-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

.professional-approach,
.seasonal-approach {
  padding: 80px 0;
  background: white;
}

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

.approach-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.approach-item:hover {
  background: white;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
  transform: translateX(8px);
}

.approach-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-icon i {
  font-size: 1.8rem;
  color: white;
}

.approach-text h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.approach-text p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

.products {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.product-card {
  background: white;
  border-radius: 24px;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
}

.product-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.product-header {
  padding: 40px 30px 30px;
  text-align: center;
  background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.product-header h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-body {
  padding: 30px;
}

.product-features {
  list-style: none;
  margin-bottom: 30px;
}

.product-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features i {
  color: var(--primary);
  font-size: 18px;
}

.product-body .btn-primary,
.product-body .btn-secondary {
  width: 100%;
  text-align: center;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

.contact-content {
  padding: 80px 0;
}

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

.contact-form-section h2,
.contact-info-section h2 {
  margin-bottom: 20px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
}

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

.checkbox-label input[type='checkbox'] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(135deg, var(--light) 0%, white 100%);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-item i {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 16px;
}

.contact-item p {
  color: var(--gray);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.map-section {
  padding: 0 0 80px;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.error-section,
.thankyou-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.error-content,
.thankyou-content {
  text-align: center;
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 30px;
}

.error-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.error-content p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.thankyou-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.thankyou-content p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: white;
  padding: 40px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 30px;
    gap: 0;
    transition: left 0.3s ease;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .nav-link {
    padding: 16px 20px;
    width: 100%;
    text-align: left;
    border-radius: 12px;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

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

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

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

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

  .content-wrapper.reverse {
    direction: ltr;
  }

  .services-grid,
  .benefits-grid,
  .approach-content,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .error-code {
    font-size: 5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-buttons {
    width: 100%;
  }

  .btn-accept,
  .btn-learn {
    flex: 1;
  }

  .policy-content {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .error-code {
    font-size: 4rem;
  }

  .error-actions {
    flex-direction: column;
  }

  .error-actions .btn-primary,
  .error-actions .btn-secondary {
    width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .service-card,
  .feature-box,
  .benefit-item,
  .review-card {
    padding: 25px;
  }

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

  .logo {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

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

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

  .page-hero h1 {
    font-size: 1.4rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .service-card,
  .feature-box,
  .benefit-item,
  .review-card {
    padding: 20px;
  }

  .policy-content {
    padding: 30px 20px;
  }

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

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

  .logo {
    font-size: 1.1rem;
  }

  .nav-link {
    font-size: 13px;
  }
}

.features {
  background: white;
}

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

.feature-box {
  background: linear-gradient(135deg, var(--light) 0%, white 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  text-align: center;
}

.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-box i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
}

.feature-box h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.feature-box p {
  color: var(--gray);
  margin: 0;
  line-height: 1.8;
}

.showcase {
  background: linear-gradient(135deg, var(--light) 0%, #e0e7ff 100%);
}

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

.showcase-text h2 {
  margin-bottom: 24px;
  font-size: 2.2rem;
}

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

.showcase-image {
  position: relative;
}

.showcase-image img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.benefits {
  background: white;
}

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

.benefit-item {
  display: flex;
  gap: 24px;
  padding: 35px;
  background: var(--light);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  background: white;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.benefit-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-content p {
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
}

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

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

.review-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.review-card:hover::after {
  transform: scaleX(1);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.review-text {
  margin-bottom: 24px;
}

.review-text p {
  font-style: italic;
  color: var(--gray);
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
}

.review-author strong {
  display: block;
  color: var(--dark);
  margin-bottom: 5px;
  font-size: 16px;
}

.review-author span {
  color: var(--gray);
  font-size: 13px;
}

@media (max-width: 768px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .benefits-list,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.seasonal-features {
  background: white;
}

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

.professional-method {
  background: white;
}
