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

:root {
  --primary: #2d3fe7;
  --secondary: #ff6b35;
  --dark: #0a0e27;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --accent: #00d9ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

.header {
  padding: 20px 0;
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary);
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-text p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.visual-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(45, 63, 231, 0.2);
  background-image: url(../creative_visuals/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

.btn-primary:hover {
  background: #1e2fd7;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 63, 231, 0.3);
}

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

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

.features {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff5f0 0%, #f0f8ff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-item {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-sticker {
  font-size: 48px;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

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

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

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

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 15px;
}

.products-preview {
  padding: 80px 0;
}

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

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
}

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.product-icon i {
  font-size: 30px;
  color: var(--white);
  font-weight: bold;
}

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

.product-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

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

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

.location-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 22px;
  color: var(--primary);
  margin-top: 3px;
  font-weight: bold;
}

.info-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  color: var(--gray);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e2fd7 100%);
}

.cta-content {
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

.cta .btn-primary:hover {
  background: var(--light);
}

.footer {
  padding: 30px 0;
  background: var(--dark);
  color: var(--white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 25px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.privacy-popup.show {
  transform: translateY(0);
}

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

.privacy-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.privacy-content p {
  font-size: 13px;
  opacity: 0.9;
}

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

.privacy-buttons a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
}

.privacy-buttons button {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

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

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.9;
}

.products {
  padding: 80px 0;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s;
}

.product-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image i {
  font-size: 50px;
  color: var(--white);
  font-weight: bold;
}

.product-details h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-details p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

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

.benefits h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.benefit-card {
  padding: 30px 20px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-sticker {
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.info-section {
  padding: 80px 0;
}

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

.info-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.info-content p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 15px;
}

.info-content .btn-primary {
  margin-top: 20px;
}

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

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

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 30px;
}

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--white);
  font-weight: bold;
}

.contact-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 14px;
  color: var(--gray);
}

.contact-form-wrapper {
  background: var(--light);
  padding: 40px;
  border-radius: 16px;
}

.contact-form-wrapper h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

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

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

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

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

.map-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

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

.thankyou-section,
.error-section {
  padding: 100px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

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

.thankyou-icon,
.error-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon i {
  font-size: 50px;
  color: var(--white);
  font-weight: bold;
}

.error-icon {
  background: linear-gradient(135deg, var(--secondary), #ff8c5a);
}

.error-icon i {
  font-size: 50px;
  color: var(--white);
  font-weight: bold;
}

.thankyou-content h1,
.error-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 15px;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.thankyou-info {
  margin-top: 40px;
  padding: 25px;
  background: var(--light);
  border-radius: 12px;
}

.thankyou-info strong {
  display: block;
  margin-bottom: 10px;
}

.error-links {
  margin-top: 40px;
}

.error-links h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

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

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

.error-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.policy-section {
  padding: 60px 0;
}

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

.policy-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.policy-date {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 40px;
}

.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
}

.policy-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
}

.policy-content li {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .hero-grid,
  .about-layout,
  .location-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero-text h1 {
    font-size: 32px;
  }

  .section-header h2,
  .about-content h2,
  .cta-content h2 {
    font-size: 28px;
  }

  .product-item {
    grid-template-columns: 1fr;
  }

  .product-image {
    margin: 0 auto;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

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

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

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .policy-content h1 {
    font-size: 28px;
  }

  .policy-content h2 {
    font-size: 22px;
  }
}

@media (min-width: 320px) {
  body {
    min-width: 320px;
  }
}

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

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

.testimonial-card {
  padding: 35px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  font-size: 16px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e2fd7 100%);
}

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

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

.brands-content > p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.brand-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-emoji {
  font-size: 28px;
}

.brand-feature span:last-child {
  font-size: 15px;
  font-weight: 500;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

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

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.faq-icon {
  font-size: 28px;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.faq-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 38px;
  }
}

.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(45, 63, 231, 0.3);
}

.step-icon {
  font-size: 56px;
  margin: 20px 0;
  animation: bounce 2s ease-in-out infinite;
}

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

.process-step h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.categories-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5f0 0%, #f0f8ff 100%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  padding: 35px 25px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.category-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0.3);
  transition: all 0.3s;
}

.category-card:hover .category-image {
  filter: grayscale(0);
  transform: rotate(10deg) scale(1.1);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.category-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.category-count {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .step-icon {
    font-size: 48px;
  }

  .category-image {
    font-size: 52px;
  }
}
