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

:root {
  --color-accent: rgb(108 183 73);
  --accent-bg-text-color: white;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  color: #1f2937;
  background-color: #f9fafb;
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  background-color: #f9fafb;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.top-bar {
  background: var(--color-accent);
  color: black;
  padding: 0.75rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.brand-name img {
  height: 32px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}
.contact-link img {
  width: 24px;
  height: 24px;
}

@media (max-width: 650px) {
  .contact-link:first-child {
    padding-left: 0;
  }
}
@media (min-width: 651px) {
  .contact-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
  }
}

.phone-number {
  font-weight: 600;
}
@media (max-width: 650px) {
  .phone-number {
    display: none;
  }
  .contact-links {
    gap: 0px !important;
  }
  .container {
    padding: 0 1rem;
  }
}

.email-text,
.wa-text, .nav-link-text {
  display: inline;
  font-weight: 600;
}
@media (max-width: 967px) {
  .wa-text {
    display: none;
  }
  .email-text {
    display: none;
  }
  .contact-links {
    gap: .25rem;
  }
}

.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(22, 163, 74, 0.02) 50px,
    rgba(22, 163, 74, 0.02) 52px
  );
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0 1rem;
  }
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease-out;
}

.professional-badge {
  background: #ededef;
  padding: 0.125rem 2.5rem 0.125rem .75rem;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: fixed;
  right: -1.75rem;
  top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 2px solid var(--color-accent);
  border-right: none;
}

.professional-badge:hover {
  right: 0rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.professional-badge img {
  height: 72px;
  width: auto;
  display: block;
}

.rating-badge {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  padding: 0.5rem 3.25rem 0.75rem 1rem;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
  transition: all 0.3s ease;
  position: fixed;
  right: -1.75rem;
  top: 150px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  z-index: 10;
}
@media (max-width: 890px) {
  .rating-badge,
  .professional-badge {
    display: none;
  }
}

.rating-badge:hover {
  right: 0rem;
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-score {
  font-size: .875rem;
  font-weight: 600;
}

.rating-text {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.cta-button {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.4);
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.form-section {
  background-color: #f3f4f6;
  padding: 4rem 0 6rem;
}

.form-container {
  max-width: 42rem;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem 2rem 3rem;
  border: 1px solid rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
} 

@media (min-width: 768px) {
  .form-container {
    padding: 3rem 3rem 4rem;
  }
}

.form-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.motorcycle-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-step.hidden {
  display: none;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.progress-step.active {
  opacity: 1;
}

.step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--accent-bg-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: black;
  text-align: center;
}

.progress-step.active .step-label {
  color:black;
}

.progress-line {
  width: 2rem;
  height: 2px;
  background-color: #e5e7eb;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .progress-line {
    width: 4rem;
  }
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
  font-size: 1.125rem;
  font-weight: 600;
}

.radio-label:hover {
  border-color: #16a34a;
  background-color: #f0fdf4;
}

.radio-label input[type='radio'] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #16a34a;
}

.radio-label input[type='radio']:checked + span {
  color: #15803d;
}

.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
  transform: translateY(-1px);
}

.form-textarea:hover:not(:focus) {
  border-color: #d1d5db;
  background-color: white;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.back-button {
  flex: 1;
  background: #f3f4f6;
  color: #374151;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-group .submit-button {
  flex: 2;
}

.upload-info {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid #93c5fd;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.privacy-info {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #bbf7d0;
  margin-top: 1.5rem;
}

.privacy-info p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #166534;
  line-height: 1.6;
}

.privacy-info p:first-child {
  margin-top: 0;
}

.privacy-info p:last-child {
  margin-bottom: 0;
}

.success-message {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 1rem;
  border: 2px solid #16a34a;
  animation: fadeIn 0.5s ease;
}

.success-message.hidden {
  display: none;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.3);
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.125rem;
  color: #166534;
  line-height: 1.6;
  margin: 0.75rem 0;
}

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

.form-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1.125rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
  transform: translateY(-1px);
}

.form-input:hover:not(:focus),
.form-select:hover:not(:focus) {
  border-color: #d1d5db;
  background-color: white;
}

.file-input {
  display: none;
}

.file-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border: 2px dashed #cbd5e1;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  color: #374151;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.file-button:hover {
  border-color: #16a34a;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.file-button:active {
  transform: translateY(0);
}

.file-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background-color: #f9fafb;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  animation: slideIn 0.3s ease;
}

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

.file-item:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.file-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.file-name {
  font-size: 0.95rem;
  color: #1f2937;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-size {
  font-size: 0.8rem;
  color: #6b7280;
}

.remove-button {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.5rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.remove-button:hover {
  color: #991b1b;
  background-color: #fee2e2;
}

.add-more-button {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px dashed #16a34a;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  color: #15803d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.add-more-button:hover {
  background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.max-files-label {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #f59e0b;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
  margin-top: 0.5rem;
}

.file-thumbnail {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d1d5db;
  transition: all 0.3s ease;
}

.file-thumbnail:hover {
  border-color: #16a34a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-image:hover {
  opacity: 0.9;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  color: white;
  font-size: 1.125rem;
  text-align: center;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0.5rem;
  max-width: 80%;
  word-break: break-word;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.error-message {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-input.error,
.form-select.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.form-input.error:focus,
.form-select.error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.submit-button {
  width: 100%;
  background: var(--color-accent);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-button::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.5s;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.how-it-works {
  background-color: white;
  padding: 4rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 3rem;
}

.steps-container {
  max-width: 80rem;
  margin: 0 auto;
}

.green-box {
  background: #6cb7492b;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid rgb(108 183 73 / 30%);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
  position: relative;
}

.steps-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: 1rem;
  pointer-events: none;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: #1f2937;
  list-style: none;
  position: relative;
  z-index: 1;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.step-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateX(8px);
}

.step-number {
  font-weight: 700;
  color: var(--accent-bg-text-color);
  background: var(--color-accent);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  align-self: start;
}

.step-content {
  flex: 1;
}

.step-bold {
  font-weight: 700;
}

.benefits {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  text-align: center;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background-color: transparent;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.benefit-card:hover {
  background-color: #f9fafb;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
  width: 100%;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.35);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.benefit-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.faq-section {
  background-color: #f3f4f6;
  padding: 4rem 0;
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
  color: var(--color-accent);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

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

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

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

.faq-answer-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.faq-answer-content strong {
  font-weight: 600;
  color: #1f2937;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.95rem;
  }
}

.brands-section {
  /* background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%); */
  padding: 4rem 0; 
  position: relative;
  overflow: hidden;
}

.brands-text {
  text-align: center;
  font-size: 1.125rem;
  color: #1f2937;
  line-height: 1.6;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.brands-text .bold {
  font-weight: 700;
}

.brands-text .semibold {
  font-weight: 600;
}

.footer {
  background: var(--color-accent);
  color: var(--accent-bg-text-color);
  padding: 2rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

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

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-bg-text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.footer-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer-phone,
.footer-email {
  font-weight: 600;
  font-size: 1.125rem;
}

.footer-email {
  display: none;
}

@media (min-width: 640px) {
  .footer-email {
    display: inline;
  }
}

.footer-links {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #80a924;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1rem;
}

.footer-nav-link {
  color: var(--accent-bg-text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.25);
}

.footer-nav-link:hover {
  transform: translateX(4px);
}

.footer-copyright {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.cookie-banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.cookie-banner-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.cookie-btn-primary {
  background: var(--color-accent);
  color: var(--accent-bg-text-color);
}

.cookie-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.cookie-btn-secondary {
  background: #f3f4f6;
  color: #374151;
}

.cookie-btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.cookie-btn-text {
  background: transparent;
  color: var(--color-accent);
  padding: 0.5rem;
}

.cookie-btn-text:hover {
  background: #6cb7492b;
  color: var(--color-accent);
}

.cookie-banner-link {
  font-size: 0.875rem;
  color: var(--color-accent);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.cookie-banner-link:hover {
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.cookie-modal.show {
  opacity: 1;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.cookie-modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background: #e5e7eb;
  color: #374151;
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-category {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cookie-category-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.cookie-category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.cookie-category-badge {
  background: var(--color-accent);
  color: var(--accent-bg-text-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.cookie-category-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 34px;
}

.cookie-toggle label:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + label {
  background-color: var(--color-accent);
}

.cookie-toggle input:checked + label:before {
  transform: translateX(24px);
}

.cookie-toggle.disabled label {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.cookie-modal-footer .cookie-btn {
  flex: 1;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .cookie-modal-content {
    max-height: 95vh;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }
}

  .back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
  }
  .back-to-home:hover {
    color: #15803d;
    transform: translateX(-4px);
  }