/* CSS Variables */
:root {
  --emerald: #00FFA3;
  --purple: #7B2FF7;
  --coral: #FF6B6B;
  --gold: #FFD93D;
  --dark: #2D2D2D;
  --light: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--emerald), var(--purple));
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--emerald);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--emerald);
  border-radius: 8px;
  transition: var(--transition);
}

.contact-phone:hover {
  background: var(--emerald);
  color: var(--light);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--purple) 100%);
  color: var(--light);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--glass);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.decoration-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.decoration-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.decoration-3 {
  top: 50%;
  right: -50px;
  animation-delay: 4s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--coral);
  color: var(--light);
}

.btn-primary:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
  background: var(--glass);
  color: var(--light);
  border: 2px solid var(--light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--emerald), var(--purple));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-item svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-item p {
  color: #666;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--light);
}

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

.service-card {
  background: var(--light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid #e9ecef;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
  border: 2px solid var(--emerald);
  background: linear-gradient(135deg, var(--emerald) 0%, var(--purple) 100%);
  color: var(--light);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--coral);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--emerald);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

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

.service-card p {
  margin-bottom: 1.5rem;
  color: #666;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 600;
}

.service-card.featured .service-features li::before {
  color: var(--light);
}

.service-price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.service-card.featured .service-price {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.service-card.featured .price {
  color: var(--light);
}

/* Advantages Section */
.advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.advantage-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--emerald), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
}

.advantage-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

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

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 2rem;
  font-size: 4rem;
  color: var(--emerald);
  font-weight: 700;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Order Form Section */
.order-form {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--purple) 100%);
  color: var(--light);
}

.order-form .section-title {
  color: var(--light);
}

.order-form .section-title::after {
  background: var(--light);
}

.order-form .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group select {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-weight: 500;
}

.form-group select option {
  background: var(--light);
  color: var(--dark);
  padding: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light);
  background: rgba(255, 255, 255, 0.2);
}

.form-checkboxes {
  margin-bottom: 2rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--light);
  text-decoration: underline;
}

.checkbox-group a:hover {
  color: var(--gold);
}

/* FAQ Section - CSS Only Accordion */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300FFA3" opacity="0.05"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Hide radio buttons */
.faq-radio {
  display: none;
}

/* FAQ Question Label */
.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(0, 255, 163, 0.05);
  color: var(--emerald);
}

.faq-question span {
  flex: 1;
  margin-right: 1rem;
}

/* FAQ Icon Container */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--purple) 100%);
  color: var(--light);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  transition: all 0.4s ease;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.faq-content {
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.faq-content p {
  margin-bottom: 1rem;
  color: var(--dark);
  line-height: 1.6;
}

.faq-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-content li {
  margin-bottom: 0.5rem;
  color: var(--dark);
  line-height: 1.6;
}

.faq-content li::marker {
  color: var(--emerald);
}

.faq-content strong {
  color: var(--emerald);
  font-weight: 600;
}

/* Active state when radio is checked */
.faq-radio:checked ~ .faq-question {
  background: rgba(0, 255, 163, 0.1);
  color: var(--emerald);
}

.faq-radio:checked ~ .faq-question .faq-icon {
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  transform: scale(1.1);
}

.faq-radio:checked ~ .faq-question .faq-icon svg {
  transform: rotate(45deg);
}

.faq-radio:checked ~ .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-radio:checked ~ .faq-answer .faq-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Focus styles for accessibility */
.faq-radio:focus ~ .faq-question {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* Improved visual feedback */
.faq-question:active {
  transform: scale(0.99);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 0.75rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .faq-icon {
    width: 36px;
    height: 36px;
  }
  
  .faq-content {
    padding: 0 1.25rem;
  }
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.contact-info p {
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: var(--transition);
}

.contact-item:hover {
  background: #e9ecef;
}

.contact-item svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-item a {
  color: var(--emerald);
  text-decoration: none;
}

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

.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--light);
}

.footer-section p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-license {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact .contact-item {
  background: transparent;
  padding: 0;
}

.footer-contact .contact-item:hover {
  background: transparent;
}

.footer-contact svg {
  color: var(--emerald);
}

.footer-contact a {
  color: var(--light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--emerald);
}

.footer-services {
  list-style: none;
}

.footer-services li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 1rem;
}

.footer-services li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--emerald);
}

.footer-legal {
  list-style: none;
}

.footer-legal li {
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--emerald);
}

.footer-social {
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

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

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--light);
  padding: 1.5rem;
  z-index: 10000;
  transition: bottom 0.3s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content h3 {
  margin-bottom: 0.5rem;
  color: var(--light);
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-btn.accept {
  background: var(--emerald);
  color: var(--light);
}

.cookie-btn.accept:hover {
  background: #00e693;
}

.cookie-btn.decline {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-toggle:checked ~ .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header-contact {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
