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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accept {
    background: linear-gradient(135deg, #ff69b4, #00bfff, #00ff7f);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
}

.btn-decline {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: #f5f5f5;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    text-decoration: none;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo img {
    max-width: 24px;
    width: 100%;
}

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

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

.nav-menu a:hover {
    color: #ff69b4;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
   
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.hero-text {
    max-width: 628px;
    width: 100%;
}

.hero h1 {
    font-size: 90px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
}

.hero-subtitle h3 {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 14px;
    color: #333;
    max-width: 223px;
    width: 100%;
    line-height: 1.4;
    text-align: justify;
}

.btn-primary {
    display: inline-block;
    border-radius: 80px;
background:  linear-gradient(90deg, #FF6FFF 0%, #F4EC2F 43.75%, #02D7F5 100%);
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
    max-width: 559px;
    width: 100%;
}

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

.hero-content {
    display: flex;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #ff69b4, #ffd700, #00ff7f, #00bfff);
    padding: 80px 0;
    
}

.stats h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border-radius: 24px;
border: 1px solid #0F0F0F;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr;
    gap: 30px;
    align-items: start;
    
}

.about-image {
    text-align: center;
    position: absolute;
    max-width: 355px;
    width: 100%;
    left: 0;
    bottom: 10%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.barcode {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.about-text {
    max-width: 834px;
    width: 65%;
    margin-left: auto;
}

.about-text p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin: 10px 0 10px 0;
}

.advantages {
    display: grid;
    
}

.advantage-item h4 {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff69b4, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #ff69b4, #ffd700, #00ff7f, #00bfff);
    padding: 100px 0;
    color: white;
}

.products h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-transform: uppercase;
}

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

.product-card {
    border-radius: 30px;
border: 1px solid #FFF;
    padding: 30px;
    text-align: center;
    color: #333;
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}

.product-barcode {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.product-barcode img {
   max-width: 65px;
}



.product-price {
    font-size: 18px;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-product {
    background: white;
    text-decoration: none;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: white;
}

.reviews h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: left;
    margin-bottom: 60px;
}

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

.reviews-grid .review-card:nth-child(3) {
    grid-row-start: 2;
}

.reviews-grid .review-card:nth-child(4) {
    grid-row-start: 2;
}

.reviews-grid .review-card:nth-child(5) {
    grid-row-start: 2;
}

.review-card {
    background: white;
    border-radius: 28px;
border: 1px solid #0F0F0F;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #ffd700;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
}

.review-card h4 {
    font-size: 18px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 0;
    padding-right: 60px;
}

.quote-mark {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-width: 50px;
    color: #ddd;
    line-height: 1;
    font-weight: bold;
}

.quote-mark img {
    width: 100%;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ff69b4, #ffd700, #00ff7f, #00bfff);
    padding: 100px 0;
    color: #333;
}

.cta h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: left;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

.cta-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-item {
    
    padding: 20px;
   border-radius: 18px;
border: 1px solid #0F0F0F;
    backdrop-filter: blur(10px);
   
}

.contact-item strong {
    font-weight: 900;
    color: #333;
    display: block;
    line-height: 1.4;
}

.contact-phone {
    
   
    border-radius: 25px;
    margin-bottom: 15px;
  
}

.contact-email {
    
    border-radius: 25px;
    
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px 0;
}

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

.footer-brand .logo {
    color: white;
    font-size: 24px;
    font-weight: 900;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff69b4;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-details p {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-details strong {
    font-weight: 700;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    width: 40px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a img {
    width: 100%;
}

.social-links a:nth-child(2) {
    background: #1877f2;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: left;
    color: #666;
    font-size: 14px;
}

.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #000;
    padding-top: 50px;
}

.card-image {
    max-width: 552px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-image img {
    max-width: 386px;
    width: 100%;
}

.card-image h2 {
    font-size: 60px;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.2;
}

.card-image h2 p {
    font-size: 50px;
}

.card-content {
    max-width: 598px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.card-content h3 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.card-content ul {
    padding-left: 20px;
}

.card-content .btn-product {
    max-width: 190px;
    text-align: center;
}

@media (max-width: 1200px) {
  .hero h1 {
   font-size: 64px;
  }
}

@media (max-width: 998px) {
  .about-image {
    position: relative;
    left: -20px;
    bottom: auto;
  }
  .about-text {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  .hero-content {
    flex-direction: column;
  }
  .hero-content p {
    max-width: 100%;
  }
  .card {
    flex-direction: column;
    
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        
    }
    
    .hero h1 {
        font-size: 56px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        
    }
    
    .stats h2,
    .about h2,
    .products h2,
    .reviews h2,
    .cta h2 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .reviews-grid .review-card:nth-child(3),
    .reviews-grid .review-card:nth-child(4),
    .reviews-grid .review-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
        margin: 0;
    }
    
    .reviews h2 {
        text-align: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .cta h2 {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header .container {
   flex-direction: column;
   align-items: flex-start;
}



    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .stats h2,
    .about h2,
    .products h2,
    .reviews h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .review-card p {
        padding-right: 35px;
    }
    
    .quote-mark {
        font-size: 40px;
        right: 15px;
        bottom: 15px;
    }
    
    .cta h2 {
        font-size: 24px;
    }
    
    .hero,
    .stats,
    .about,
    .products,
    .reviews,
    .cta {
        padding: 90px 0;
    }

    .hero {
    padding-top: 110px;
}
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.hero-image img,
.about-image img,
.product-image img {
    transition: opacity 0.3s ease;
}

/* Hover Effects */
.stat-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.advantage-item:hover h4 {
    background: linear-gradient(135deg, #00bfff, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                