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

:root {
  --primary: #0066ff;
  --secondary: #1a1a2e;
  --accent: #ff6b35;
  --highlight: #00d4aa;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #ffffff;
  --bg-light: #f7fafc;
  --border: #e2e8f0;
}

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

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

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

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

.header {
  background: var(--bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.logo a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: white;
  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;
}

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

.btn-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}

.btn-learn {
  color: var(--highlight);
  text-decoration: underline;
}

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

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

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

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.feature-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.services {
  padding: 80px 0;
  background: white;
}

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

.services-text h2 {
  margin-bottom: 20px;
}

.services-text > p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.services-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.services-list i {
  color: var(--highlight);
  font-size: 1.2rem;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

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

.services-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.products {
  padding: 80px 0;
  background: var(--bg-light);
}

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

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

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

.product-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.product-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-header h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.product-price {
  margin-bottom: 30px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.product-features i {
  color: var(--highlight);
  font-size: 1.1rem;
}

.btn-product {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
}

.btn-product:hover {
  background: #0052cc;
}

.process {
  padding: 80px 0;
  background: white;
}

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

.process-step {
  background: var(--bg-light);
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s;
}

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

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 15px;
}

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

.process-step p {
  color: var(--text-light);
  line-height: 1.7;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.footer {
  background: var(--secondary);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

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

  .footer-content {
    flex-direction: column;
  }

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

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

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  padding: 80px 0;
  background: white;
}

.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: 20px;
}

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

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.features-alt {
  padding: 80px 0;
  background: var(--bg-light);
}

.features-alt h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-item {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-item h3 {
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.benefits {
  padding: 80px 0;
  background: white;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.benefit-card {
  background: var(--bg-light);
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.benefit-card h3 {
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.cta-alt {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.cta-alt h2 {
  margin-bottom: 20px;
}

.cta-alt p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.payment-methods {
  padding: 80px 0;
  background: white;
}

.payment-methods h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.payment-card {
  background: var(--bg-light);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.payment-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.payment-card h3 {
  margin-bottom: 15px;
}

.payment-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.security-features {
  padding: 80px 0;
  background: var(--bg-light);
}

.security-features h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.security-item {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.security-item h3 {
  margin-bottom: 15px;
}

.security-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.integration-benefits {
  padding: 80px 0;
  background: white;
}

.integration-benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
}

.benefit-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 5px;
}

.benefit-item h3 {
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

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

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

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

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 5px;
}

.contact-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-form-wrapper h2 {
  margin-bottom: 25px;
}

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

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

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

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

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

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

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

.btn-submit {
  background: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

.map-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.map-wrapper iframe {
  width: 100%;
  border-radius: 12px;
}

.policy-section {
  padding: 80px 0;
  background: white;
  word-break: break-all;
}

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

.policy-content h1 {
  margin-bottom: 15px;
}

.policy-date {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.policy-content li {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

.error-section {
  padding: 100px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: white;
}

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

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

.error-content h1 {
  margin-bottom: 20px;
}

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

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

.thankyou-section {
  padding: 100px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: white;
}

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

.thankyou-content i {
  font-size: 5rem;
  color: var(--highlight);
  margin-bottom: 30px;
}

.thankyou-content h1 {
  margin-bottom: 20px;
}

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

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

@media (max-width: 768px) {
  .content-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .features-grid-alt,
  .benefits-grid,
  .payment-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }

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

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

  .btn-primary,
  .btn-secondary,
  .btn-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .thankyou-content i {
    font-size: 3.5rem;
  }
}
