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

:root {
  --primary-color: #6366f1;
  --secondary-color: #0f172a;
  --accent-color: #f59e0b;
  --text-color: #1e293b;
  --text-light: #64748b;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 15px;
  background-color: var(--bg-color);
}

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

.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: black;
  position: relative;
  padding-left: 35px;
}

.logo::before {
  content: '♪';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 28px;
}

.nav {
  display: flex;
  gap: 8px;
  background: rgb(0 0 0 / 20%);
  padding: 6px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  padding: 8px 18px;
  border-radius: 6px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 18px;
  color: white;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../media_assets/hero-image.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 550px;
  color: white;
  padding: 60px 0;
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

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

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

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

section {
  padding: 60px 0;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
  color: var(--secondary-color);
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.features {
  background: var(--bg-light);
}

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

.feature-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.instruments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.instrument-item {
  background: white;
  padding: 18px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.instrument-item:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.instrument-item i {
  font-size: 20px;
}

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

.step {
  text-align: center;
}

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

.step p {
  font-size: 14px;
  color: var(--text-light);
}

.testimonials {
  background: var(--bg-light);
}

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

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.testimonial-card p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author strong {
  font-size: 14px;
  color: var(--secondary-color);
}

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

.cta {
  background: var(--secondary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.footer {
  background: var(--secondary-color);
  color: white;
  padding: 25px 0;
  font-size: 13px;
}

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

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

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 500px;
  display: none;
}

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

.cookie-content p {
  font-size: 13px;
  margin-bottom: 15px;
  color: var(--text-color);
}

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

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url(../media_assets/hero-2.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

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

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

.content-block p {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.7;
}

.content-block.centered {
  text-align: center;
}

.products {
  background: var(--bg-light);
}

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

.product-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.product-card.featured {
  border-color: var(--accent-color);
}

.product-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-icon {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 15px 0;
}

.product-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.product-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

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

.benefit-item i {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-light);
}

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

.requirement-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.requirement-card i {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.requirement-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.software-list {
  margin-top: 25px;
}

.software-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
}

.software-item i {
  font-size: 24px;
  color: var(--success-color);
}

.software-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.software-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.tip-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.tip-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.tip-card p {
  font-size: 14px;
  color: var(--text-light);
}

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

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

.contact-info h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

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

.contact-item i {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--secondary-color);
}

.contact-item p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-top: 15px;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-color);
  cursor: pointer;
}

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

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.map-section {
  margin-top: -30px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 25px;
}

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

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

.thankyou-icon {
  font-size: 70px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.thankyou-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.thankyou-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.error-code {
  font-size: 100px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.error-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.policy-section {
  padding: 40px 0 60px;
}

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

.policy-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.policy-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
  text-align: left;
  color: var(--secondary-color);
}

.policy-content h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.policy-content h4 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.policy-content p {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content strong {
  font-weight: 600;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: relative;
  }

  .logo {
    color: var(--primary-color);
    padding-left: 0;
    font-size: 16px;
  }

  .logo::before {
    content: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
  }

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

  .nav.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
    background: var(--bg-light);
    color: var(--text-color);
  }

  .hero {
    min-height: 500px;
    padding-top: 60px;
  }

  .hero::before {
    width: 100%;
  }

  .hero::after {
    width: 100%;
    opacity: 0.15;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .page-hero {
    padding: 90px 0 60px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .thankyou-content h1,
  .error-content h1 {
    font-size: 26px;
  }

  .error-code {
    font-size: 70px;
  }

  .policy-content h1 {
    font-size: 28px;
  }

  .policy-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 450px;
    padding-top: 60px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .page-hero {
    padding: 80px 0 50px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  section {
    padding: 40px 0;
  }

  .features-grid,
  .products-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 10px 22px;
    font-size: 13px;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }
}
