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

:root {
  --obsidian: #0a0a0a;
  --cyan: #7FD957;
  --ghost: #e5e5e5;
  --spacing: 20px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ghost);
  background: var(--obsidian);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></svg>');
  pointer-events: none;
  z-index: 9999;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(127, 217, 87, 0.03) 0%, transparent 50%),
  radial-gradient(circle at 80% 80%, rgba(127, 217, 87, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1 {
  font-size: 96px;
  line-height: 1.1;
}

h2 {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 30px;
}

h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
}

h4 {
  font-size: 24px;
  line-height: 1.4;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.header {
  padding: 30px 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid var(--cyan);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: var(--ghost);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}

.nav a:hover {
  color: var(--cyan);
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  padding: 120px 0;
  position: relative;
  background-image: url(../visual_gallery/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 30px;
  color: var(--ghost);
  background-color: #0a0a0a;
  padding: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 40px;
  color: var(--ghost);
  opacity: 0.9;
  background-color: #0a0a0a;
  padding: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--cyan);
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--cyan);
  color: var(--obsidian);
}

.btn-primary:hover {
  background: transparent;
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(127, 217, 87, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
}

.btn-secondary:hover {
  background: var(--cyan);
  color: var(--obsidian);
  box-shadow: 0 0 20px rgba(127, 217, 87, 0.3);
}

section {
  padding: 80px 0;
}

.services {
  background: rgba(127, 217, 87, 0.02);
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.services h2 {
  text-align: center;
  color: var(--cyan);
}

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

.service-card {
  padding: 40px;
  border: 1px solid var(--cyan);
  background: rgba(10, 10, 10, 0.8);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(127, 217, 87, 0.2);
}

.service-card i {
  font-size: 48px;
  color: var(--cyan);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  color: var(--ghost);
}

.service-card p {
  font-size: 16px;
  color: var(--ghost);
  opacity: 0.8;
}

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

.about-text h2 {
  color: var(--cyan);
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--cyan);
  display: block;
}

.process {
  background: rgba(127, 217, 87, 0.02);
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.process h2 {
  text-align: center;
  color: var(--cyan);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step {
  padding: 40px;
  border: 1px solid var(--cyan);
  background: rgba(10, 10, 10, 0.8);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  color: var(--cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  color: var(--ghost);
}

.step p {
  font-size: 16px;
  color: var(--ghost);
  opacity: 0.8;
}

.benefits h2 {
  text-align: center;
  color: var(--cyan);
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(127, 217, 87, 0.3);
}

.benefit-item i {
  color: var(--cyan);
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 16px;
}

.cta {
  text-align: center;
  padding: 100px 0;
  background: rgba(127, 217, 87, 0.05);
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.cta-content h2 {
  color: var(--cyan);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--cyan);
}

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

.footer-info p {
  font-size: 14px;
  color: var(--ghost);
  opacity: 0.7;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--ghost);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--cyan);
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--cyan);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.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 {
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

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

.btn-accept,
.btn-learn {
  padding: 10px 24px;
  font-size: 14px;
  border: 1px solid var(--cyan);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.btn-accept {
  background: var(--cyan);
  color: var(--obsidian);
}

.btn-accept:hover {
  background: transparent;
  color: var(--cyan);
}

.btn-learn {
  background: transparent;
  color: var(--cyan);
}

.btn-learn:hover {
  background: var(--cyan);
  color: var(--obsidian);
}

.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--cyan);
}

.page-hero h1 {
  color: var(--cyan);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.9;
}

.seasons {
  padding: 80px 0;
}

.season-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.season-btn {
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.season-btn:hover,
.season-btn.active {
  background: var(--cyan);
  color: var(--obsidian);
}

.season-btn i {
  font-size: 20px;
}

.season-content {
  display: none;
}

.season-content.active {
  display: block;
}

.season-content h2 {
  color: var(--cyan);
  text-align: center;
  margin-bottom: 50px;
}

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

.season-card {
  padding: 30px;
  border: 1px solid var(--cyan);
  background: rgba(10, 10, 10, 0.8);
}

.season-card h3 {
  color: var(--ghost);
  margin-bottom: 20px;
}

.season-card ul {
  list-style: none;
}

.season-card li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}

.season-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.seasonal-tips {
  padding: 60px 0;
  background: rgba(127, 217, 87, 0.02);
  border-top: 1px solid var(--cyan);
}

.seasonal-tips h2 {
  text-align: center;
  color: var(--cyan);
}

.current-season-info {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 30px;
  border: 1px solid var(--cyan);
  text-align: center;
}

.products {
  padding: 80px 0;
}

.products h2 {
  text-align: center;
  color: var(--cyan);
}

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

.product-card {
  padding: 40px;
  border: 1px solid var(--cyan);
  background: rgba(10, 10, 10, 0.8);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(127, 217, 87, 0.2);
}

.product-card.featured {
  border: 2px solid var(--cyan);
  background: rgba(127, 217, 87, 0.05);
}

.product-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--cyan);
  color: var(--obsidian);
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
}

.product-icon {
  text-align: center;
  margin-bottom: 20px;
}

.product-icon i {
  font-size: 56px;
  color: var(--cyan);
}

.product-card h3 {
  text-align: center;
  color: var(--ghost);
  margin-bottom: 15px;
}

.product-card > p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

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

.product-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 25px;
}

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

.gallery-showcase {
  padding: 80px 0;
  background: rgba(127, 217, 87, 0.02);
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.gallery-showcase h2 {
  text-align: center;
  color: var(--cyan);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-top: -20px;
  margin-bottom: 50px;
  opacity: 0.8;
}

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

.gallery-item {
  border: 1px solid var(--cyan);
  overflow: hidden;
  background: rgba(10, 10, 10, 0.8);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

.gallery-caption {
  padding: 20px;
}

.gallery-caption h4 {
  color: var(--ghost);
  margin-bottom: 10px;
}

.gallery-caption p {
  font-size: 15px;
  opacity: 0.8;
}

.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  color: var(--cyan);
}

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

.testimonial-card {
  padding: 40px;
  border: 1px solid var(--cyan);
  background: rgba(10, 10, 10, 0.8);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 500;
}

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

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

.contact-info h2 {
  color: var(--cyan);
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 40px;
  font-size: 18px;
}

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

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

.contact-item i {
  font-size: 24px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-item h4 {
  color: var(--ghost);
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-item p {
  font-size: 16px;
  opacity: 0.9;
}

.contact-form-wrapper {
  padding: 40px;
  border: 1px solid var(--cyan);
  background: rgba(10, 10, 10, 0.8);
}

.contact-form-wrapper h3 {
  color: var(--cyan);
  margin-bottom: 30px;
}

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

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

.form-group label {
  font-size: 14px;
  color: var(--ghost);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  background: rgba(229, 229, 229, 0.05);
  border: 1px solid var(--cyan);
  color: var(--ghost);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(127, 217, 87, 0.3);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

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

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

.map-section {
  padding: 80px 0;
  background: rgba(127, 217, 87, 0.02);
  border-top: 1px solid var(--cyan);
}

.map-section h2 {
  text-align: center;
  color: var(--cyan);
  margin-bottom: 40px;
}

.map-wrapper {
  border: 1px solid var(--cyan);
  overflow: hidden;
}

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

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-icon {
  margin-bottom: 30px;
}

.thankyou-icon i {
  font-size: 96px;
  color: var(--cyan);
}

.thankyou-content h1,
.error-content h1 {
  color: var(--cyan);
  margin-bottom: 25px;
}

.thankyou-content p,
.error-content p {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.error-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 180px;
  color: var(--cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

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

.policy-section h1 {
  color: var(--cyan);
  margin-bottom: 10px;
  font-size: 72px;
}

.policy-date {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 50px;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  color: var(--cyan);
  font-size: 42px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.policy-content h3 {
  color: var(--ghost);
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 48px;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 24px;
  }
  body {
    font-size: 16px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--cyan);
  }
  .nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 60px 0;
  }
  .hero p {
    font-size: 18px;
  }
  section {
    padding: 60px 0;
  }
  .services-grid,
  .process-steps,
  .benefits-grid,
  .products-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .season-selector {
    flex-direction: column;
  }
  .season-btn {
    width: 100%;
    justify-content: center;
  }
  .error-number {
    font-size: 120px;
  }
  .policy-section h1 {
    font-size: 48px;
  }
  .policy-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 28px;
  }
  .logo {
    font-size: 18px;
  }
  .hero {
    padding: 40px 0;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  .product-price {
    font-size: 36px;
  }
  .thankyou-icon i {
    font-size: 64px;
  }
  .error-number {
    font-size: 80px;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 15px;
  }
}
