/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-brand { 
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #007bff;
}

.nav-cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.nav-cta:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('img/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.container.hero {
  width: 100%;
}

.hero-inner {
  padding: 80px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}


#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-main-content {
  width: 50%;
}

.content-list {
  list-style-type: none;
}

.content-list-item {
  opacity: 70%;
}

.hero-img {
  max-width: 40%;
}

.hero-img-img {
  width: 100%;
}


.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

.scarcity-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero-h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
}

.price-block {
  margin-bottom: 25px;
  margin-top: 15px;
}

.old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.new-price {
  font-size: 3rem;
  font-weight: 700;
  color: #007bff;
}

.benefit-text {
  color: #666;
  margin: 20px 0;
  font-size: 1.1rem;
}

.platform-icons {
  display: flex;
  justify-content: st;
  gap: 15px;
  margin: 20px 0;
}

.platform-icons img {
  width: 32px;
  height: 32px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.cta-button.secondary {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.trust-badges {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #666;
}

.social-proof {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  z-index: 2;
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
  background: #f8f9fa;
}

.advantages h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

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

.advantage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.advantage-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.advantage-card p {
  color: #666;
  line-height: 1.6;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background: white;
}

.partners h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
}

.partners-track img {
  height: 60px;
  width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partners-track img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}











/* Social Media - Partners */


.partners2 {
  padding: 30px 0;
  background: #007bff;
}

.partners2 h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 30px;
  color: white;
}

.partners-carousel2 {
  overflow: hidden;
  position: relative;
}

.partners-track2 {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
}

.partners-track2 img {
  height: 60px;
  width: 120px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.partners-track2 img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}












/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.about-us p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.testimonial {
  display: flex;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

.testimonial:hover {
  transform: translateY(-5px);
  border: 1px solid #007bff;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-content cite {
  font-size: 0.9rem;
  color: #666;
}

.otziv-link {
  text-decoration: none;
}

.otziv-link2 {
  text-decoration: none;
  color: #007bff;
  font-weight: 700;
  text-transform: uppercase;
}



/* Social Media */

.social-media {
  background: #007bff;
  padding: 30px 0;
}

.social-media-title {
  text-align: center;
  color: #fff;
  padding: 0px 0 20px;
}

.social-media-inner {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto;

}

.social-media-inner a {
  color: #ffffff;
  text-decoration: none;
}

.telegram {
  padding: 0 15px;
  display: flex;
}

.telegram-div {
  display: flex;
  flex-direction: column;
}

.blogs {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

/* Cases Section */
.cases {
  padding: 100px 0;
  background: white;
}

.cases h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

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

.case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #fff;
}

.case-card:hover {
  transform: translateY(-10px);
  border: 2px solid #007bff;
}

.case-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-content {
  padding: 30px;
}

.case-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.case-kpi {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.case-kpi span {
  background: #e3f2fd;
  color: #1976d2;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-content p {
  color: #666;
  margin-bottom: 20px;
}

.case-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.case-content a:hover {
  text-decoration: underline;
}

/* Conditions Section */
.conditions {
  padding: 100px 0;
  background-image: url(./img/bgconditions.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.conditions h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #fff;
}

.conditions-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.condition-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.condition-card.webmasters {
  border-top: 5px solid #28a745;
}

.condition-card.arbitrage {
  border-top: 5px solid #007bff;
}

.condition-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #555;
}

.condition-card p {
  font-size: 1.1rem;
  margin-top: 20px;
  color: #666;
}

.condition-card ul {
  list-style: none;
  margin-top: 20px;
}

.condition-card li {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #666;
}

.cta-buttonn.arbitrage {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  width: 100%;
  margin-top: 40px;
  text-align: center;

  position: relative;
  top: 7px;

  display: inline-block;
  padding: 15px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;

  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.cta-buttonn.webmaster {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
  width: 100%;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 7px;

  border-radius: 0 0 10px 10px;

  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.condition-card-inner.top {
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.condition-card-inner.bottom {
  padding-right: 40px;
  padding-left: 40px;
}

.condition-price.web {
  background: #28a745;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  font-size: 1.6em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.condition-price.arb {

  background: #e6e6e6;
  color: #007bff;


  text-align: center;
  padding: 10px;
  font-weight: 500;
  font-size: 1.6em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Services Section */
.services {
  padding: 100px 0;
  background: white;
}

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

.services-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.services-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.services-text li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.services-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.services-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  border-radius: 10px;
  background-color: #f8f9fa;
  outline: 2px solid #007bff;
  outline-offset: -2px;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: #666;
  line-height: 1.6;
}



.faq-answer a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background: white;
}

.blog h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

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

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.blog-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* Buy Section */
.buy-section {
  padding: 100px 0;
  background-image: url(./img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.buy-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.buy-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.buy-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.buy-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.form-group input.error,
.form-group select.error {
  border-color: #dc3545;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

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

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #ccc;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #555;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background: #007bff;
}

.social-img {
  margin: 5px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* Sticky Buy Button */
.sticky-buy {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.sticky-buy.show {
  opacity: 1;
  visibility: visible;
}

.sticky-buy a {
  display: block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }


  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .product-card {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .product-card h1 {
    font-size: 2rem;
  }

  .new-price {
    font-size: 2.5rem;
  }

  .testimonials-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .conditions-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .footer-brand {
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
  }

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

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

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 50px;
  }

  .hero-inner {
    padding: 60px;
  }

  .hero-content {
    justify-content: center;
  }

  .social-proof {
    display: none;
  }

  .hero-main-content {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-img {
    max-width: 60%;
  }

  .hero-img-img {
    
  }


  .container {
    padding: 0 15px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }

  .platform-icons {
    gap: 10px;
  }

  .case-kpi {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {

  .hero-main-content {
    margin-bottom: 30px;
  }


  .hero-inner {
    padding: 50px;
  }

  .hero-img {
    max-width: 100%;
  }

  .hero-img-img {

  }

  .product-card h1 {
    font-size: 1.8rem;
  }

  .new-price {
    font-size: 2rem;
  }

  .advantages h2,
  .partners h2,
  .cases h2,
  .conditions h2,
  .faq h2,
  .blog h2,
  .buy-section h2 {
    font-size: 2rem;
  }

  .about-us h2,
  .services-text h2 {
    font-size: 2rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .buy-form {
    padding: 30px 20px;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  .hero-img {
    display: none;
  }

  .modal-content {
    font-size: 12px;
  }
}


@media (max-width: 416px) {
  .hero-inner {
    padding: 40px;
  }
}

@media (max-width: 375px) {
  .hero-inner {
    padding: 50px 20px;
  }

  .hero-img {
    display: none;
  }

  .hero-main-content {
    margin: 0px;
  }

  .stat-number {
    font-size: 1.4em;
  }
  .ppp {
    font-size: 14px;
  }
  .otziv-link2 {
    font-size: 14px;
  }
  .testimonial img {
    height: 40px;
    width: 40px;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .navbar {
    background: #000;
    color: #fff;
  }

  .nav-menu a {
    color: #fff;
  }

  .advantage-card,
  .testimonial,
  .case-card,
  .condition-card,
  .blog-card {
    border: 2px solid #000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .partners-track {
    animation: none;
  }

  .ticker-content {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .sticky-buy,
  .back-to-top,
  .modal {
    display: none !important;
  }

  .hero {
    height: auto;
    background: white !important;
    color: black !important;
  }

  .product-card {
    background: white !important;
    box-shadow: none !important;
    border: 2px solid #000;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  .advantage-card,
  .testimonial,
  .case-card {
    page-break-inside: avoid;
  }
}
