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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.logo {
  z-index: 1002;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.navbar {
  width: fit-content;
  max-width: 900px;
  padding: 10px 38px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.navbar a {
  text-decoration: none;
  color: #212121;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 25px;
  transition: all 0.3s;
  white-space: nowrap;
}

.navbar a:hover {
  background: #E5E7EB;
}

.lang-btn {
  padding: 10px 22px;
  background: transparent;
  color: #4B5563;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: #E5E7EB;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.hamburger-menu i {
  font-size: 24px;
  color: #212121;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: -10px;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 100px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  text-decoration: none;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: #E5E7EB;
}

.mobile-menu .lang-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    gap: 6px;
    padding: 10px 25px;
  }
  
  .navbar a {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .lang-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    height: 70px;
  }
  
  .header-inner {
    width: 95%;
    justify-content: space-between;
  }
  
  .logo img {
    height: 70px;
  }
  
  .navbar {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
}


/* ================= HERO SECTION ================= */
.hero {
  display: flex;
  align-items: flex-start;
  padding-top: 150px;
  padding-right: 0;
  padding-bottom: 25px;
  gap: 40px;
  background: radial-gradient(1000px 800px at 100% 0%, rgba(123, 97, 255, 0.25), rgba(255, 255, 255, 0) 65%);
  justify-content: center;
}
  
.hero-content {
  max-width: 500px;
  margin-top: 10px;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 26px;
  background: linear-gradient(90deg, #6A0DAD -14.52%, #205BE7 90.08%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}

.btn-get-started {
  padding: 16px 40px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
}

.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.45);
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 500px;
  padding-left: 10px;
}

.hero-illustration img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 0;
  background: linear-gradient(135deg, #2E1065 0%, #1E1B4B 100%);
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.about-box {
  background: transparent;
  padding: 70px 7%;
  border-radius: 0;
  text-align: center;
  color: white;
  box-shadow: none;
}

.about-box h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  opacity: 0.9;
}

.about-box p {
  font-size: 26px;
  line-height: 1.5;
  opacity: 1;
  font-weight: 700;
  max-width: 1100px;
  margin: 0 auto;
}

.about-box p strong {
  font-weight: 700;
}

/* ================= VALUES SECTION ================= */
.values-section {
  padding: 90px 7% 100px;
  background: linear-gradient(180deg, #5B21B6 0%, #6366F1 50%, #4F46E5 100%);
}

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

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.section-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

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

.values-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 660px;
  margin: 0 auto;
}

.value-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  padding: 50px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 27, 75, 0.051);
  z-index: 1;
  transition: all 0.4s;
}

.value-card:hover::before {
  background: rgba(30, 27, 75, 0.5);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.105);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.value-icon {
  font-size: 54px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
  position: relative;
  z-index: 2;
  display: none;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}

.value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 7% 100px;
  background: linear-gradient(180deg, #4F46E5 0%, #3B82F6 50%, #2563EB 100%);
}

.services-section .section-header h2 {
  color: white !important;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.services-section .section-header p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  min-height: 448px;
  height: 448px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 40px 32px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(59, 131, 246, 0.026) 0%, rgba(37, 99, 235, 0.8) 100%);
  z-index: 1;
  transition: all 0.4s;
}

.service-card:hover::before {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.9) 100%);
}

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

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.btn-see-all {
  padding: 15px 38px;
  background: white;
  color: #3B82F6;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 auto;
  display: block;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-see-all:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* ================= CUSTOMERS SECTION ================= */
.customers-section {
  padding: 90px 7%;
  background: white;
  text-align: center;
}

.customers-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.customers-section p {
  font-size: 17px;
  color: #9CA3AF;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.customers-logos-container {
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
  padding: 20px 0;
}

.customers-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll-left 30s linear infinite;
  width: fit-content;
}

.customers-logos:hover {
  animation-play-state: paused;
}

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

.customer-logo {
  height: 60px;
  width: auto;
  min-width: 100px;
  opacity: 0.75;
  transition: all 0.3s;
  filter: grayscale(20%);
  flex-shrink: 0;
}

.customer-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

.testimonial-box {
  background: linear-gradient(90deg, #7C3AED 0%, #6366F1 50%, #3B82F6 100%);
  padding: 50px 80px;
  border-radius: 50px;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.testimonial-box p {
  font-size: 18px;
  line-height: 1.8;
  color: white;
  margin-bottom: 0;
  font-weight: 400;
  font-style: normal;
  max-width: 100%;
}

/* ================= CERTIFICATES ================= */
.certificates-section {
  padding: 90px 7%;
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.certificates-section h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 60px;
}

.cert-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.cert-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  padding: 20px 0;
}

.cert-slide {
  min-width: calc(25% - 22.5px);
  flex-shrink: 0;
}

.cert-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  cursor: pointer;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border-color: #6366F1;
}

.cert-logo {
  margin-bottom: 20px;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.cert-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.4;
}

.cert-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.cert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s;
}

.cert-dot.active {
  background: #6366F1;
  width: 32px;
  border-radius: 5px;
}

/* ================= FAQ ================= */
.faq-section {
  padding: 90px 7%;
  background: white;
  text-align: center;
}

.faq-section .section-header {
  margin-bottom: 50px;
}

.faq-section .section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 16px;
}

.faq-section .section-header p {
  font-size: 16px;
  color: #9CA3AF;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(90deg, #7C3AED 0%, #6366F1 50%, #3B82F6 100%);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.faq-question {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.faq-question strong {
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 28px;
  color: white;
  font-size: 15px;
  line-height: 1.7;
  background: rgba(30, 27, 75, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 20px 28px 26px;
}

/* ================= CTA ================= */
.cta-section {
  padding: 100px 7% 120px;
  background: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gradient-shape-left {
  position: absolute;
  left: -140px;
  top: 110%;
  transform: translateY(-50%) rotate(35deg);
  width: 420px;
  height: 800px;
  background: linear-gradient(45deg, #8A38F5 23.08%, rgba(234, 221, 255, 0.8) 85.1%);
  opacity: 0.7;
  border-radius: 50px;
  z-index: 1;
}

.gradient-shape-right {
  position: absolute;
  right: -140px;
  top: 110%;
  transform: translateY(-50%) rotate(-35deg);
  width: 420px;
  height: 800px;
  background: linear-gradient(-45deg, #8A38F5 23.08%, rgba(234, 221, 255, 0.8) 85.1%);
  opacity: 0.7;
  border-radius: 50px;
  z-index: 1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-logo {
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}

.cta-logo img {
  height: 250px;
  width: auto;
  object-fit: contain;
}

.cta-robot {
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-robot img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta-section h2 {
  font-size: 44px;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 17px;
  color: #6B7280;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-schedule {
  padding: 16px 42px;
  background: #3B82F6;
  color: #FFFFFF;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-schedule:hover {
  background: linear-gradient(90deg, #7C3AED 0%, #c1c2e9 50%, #73a9ff 100%);
  color: rgb(37, 37, 40);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

/* ================= FOOTER ================= */
footer {
  padding: 80px 7% 30px;
  background: #4532C8;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text h3 {
  font-size: 21.2px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer-brand-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.8;
}

.footer-brand > p {
  font-size: 14.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  margin-top: 8px;
}

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

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: #6366F1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-section h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.footer-section p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #6366F1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .hero {
    padding-left: 150px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
  
  .values-grid-bottom {
    max-width: 700px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-left: 100px;
    padding-right: 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .hero-illustration {
    justify-content: center;
    padding-left: 0;
    height: auto;
  }
  
  .hero-illustration img {
    max-width: 400px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .values-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .cert-slide {
    min-width: calc(33.33% - 20px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .btn-get-started {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .about-box {
    padding: 50px 5%;
  }
  
  .about-box p {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 15px;
    padding: 0 10px;
  }
  
  .value-card {
    padding: 40px 24px;
    min-height: 180px;
  }
  
  .value-card h3 {
    font-size: 18px;
  }
  
  .service-card {
    min-height: 350px;
    height: 350px;
    padding: 30px 24px;
  }
  
  .service-content h3 {
    font-size: 20px;
  }
  
  .customers-section h2,
  .certificates-section h2,
  .faq-section .section-header h2,
  .cta-section h2 {
    font-size: 32px;
  }
  
  .testimonial-box {
    padding: 30px 20px;
    border-radius: 30px;
  }
  
  .testimonial-box p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .cert-slide {
    min-width: calc(50% - 15px);
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question strong {
    font-size: 15px;
  }
  
  .cta-logo img {
    height: 180px;
  }
  
  .cta-section h2 {
    font-size: 36px;
  }
  
  .cta-section p {
    font-size: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .gradient-shape-left,
  .gradient-shape-right {
    width: 300px;
    height: 600px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .about-box p {
    font-size: 18px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .cert-slide {
    min-width: calc(100% - 20px);
  }
  
  .customer-logo {
    height: 50px;
    min-width: 80px;
  }
  
  .customers-logos {
    gap: 40px;
  }
  
  .testimonial-box {
    padding: 25px 15px;
    border-radius: 20px;
  }
  
  .testimonial-box p {
    font-size: 15px;
  }
  
  .cta-logo img {
    height: 150px;
  }
  
  .cta-section h2 {
    font-size: 30px;
  }
  
  .cta-robot img {
    max-width: 300px;
  }
  
  .btn-schedule {
    padding: 14px 32px;
    font-size: 15px;
  }
}

