@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  /* gamă completă de grosimi */
  font-stretch: 75% 100%;
  /* dacă vrei să folosești wdth */
  font-style: normal;
  font-display: swap;
}
.roboto-light {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin: 0;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
h1,
h2,
h3,
h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}
a,
button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.btn {
  background-color: #8bc63e;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: none;
}
.btn:hover {
  background-color: #6ba82c;
}
.section {
  padding: 4rem 1rem;
}
.section.bg-muted {
  background-color: #f0f0f0;
}
.footer {
  background-color: #111;
  color: #ccc;
  padding: 3rem 1rem;
}
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.footer a {
  color: #ccc;
}
.footer a:hover {
  color: #a8da67;
}
.footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.flex {
  display: flex;
  gap: 1rem;
}
.text-muted {
  color: #888;
}
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
ul {
  padding-left: 1rem;
  list-style: none;
}
.navbar {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.navbar .navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.navbar .navbar-logo .navbar-brand {
  display: none;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to right, #6ba82c, #a8da67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .navbar .navbar-logo .navbar-brand {
    display: block;
  }
}
.navbar .navbar-links {
  display: none;
}
.navbar .navbar-links button {
  background: none;
  border: none;
  margin-left: 20px;
  font-size: 16px;
  color: white;
}
.navbar .navbar-links button:hover {
  color: #a8da67;
}
.navbar .navbar-mobile-btn {
  display: block;
}
.navbar .navbar-mobile-btn button {
  background: none;
  border: none;
  color: white;
}
.navbar .mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem;
  border-top: 1px solid #eee;
}
.navbar .mobile-menu button {
  background: none;
  border: none;
  padding: 0.75rem 0;
  text-align: left;
  font-size: 16px;
  color: #333;
}
.navbar .mobile-menu button:hover {
  background-color: #f8f8f8;
  color: #8bc63e;
  border-radius: 6px;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e5e5;
}
.navbar.scrolled .navbar-logo .navbar-brand {
  display: block;
}
.navbar.scrolled .navbar-mobile-btn button {
  color: black;
}
.navbar.scrolled .navbar-mobile-btn button:hover {
  color: #6ba82c;
}
.navbar.scrolled .navbar-links button {
  color: #6ba82c;
}
.navbar.scrolled .navbar-links button:hover {
  color: #a8da67;
}
@media (min-width: 1024px) {
  .navbar .navbar-links {
    display: flex;
  }
  .navbar .navbar-mobile-btn,
  .navbar .mobile-menu {
    display: none;
  }
}
.section-despre {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}
.section-despre .despre-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-despre .despre-title {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}
.section-despre .despre-title .highlight {
  color: #6ba82c;
}
.section-despre .despre-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-despre .despre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .section-despre .despre-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.section-despre .stat-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-despre .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.section-despre .stat-card .stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #6ba82c;
  margin-bottom: 8px;
}
.section-despre .stat-card .stat-label {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}
.section-contact {
  padding: 80px 0;
  background: #f9fafb;
}
.section-contact .contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-contact .contact-title {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}
.section-contact .contact-title .highlight {
  color: #6ba82c;
}
.section-contact .contact-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-contact .contact-wrapper {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .section-contact .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.section-contact .contact-subtitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #1f2937;
}
.section-contact .contact-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section-contact .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.section-contact .contact-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.section-contact .contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.section-contact .icon-box {
  font-size: 20px;
  background: #a8da67;
  color: #6ba82c;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-contact .info-box h4 {
  margin: 0;
  font-weight: 600;
  color: #111827;
}
.section-contact .info-box p,
.section-contact .info-box a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
}
.section-contact .info-box p:hover,
.section-contact .info-box a:hover {
  color: #6ba82c;
}
.section-contact .why-us {
  background: linear-gradient(to right, #6ba82c, #a8da67);
  color: white;
  padding: 24px;
  border-radius: 12px;
}
.section-contact .why-us h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
.section-contact .why-us ul {
  font-size: 14px;
  line-height: 1.7;
  padding-left: 0;
  list-style: none;
}
.section-contact .contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.section-contact .form-group {
  margin-bottom: 20px;
}
.section-contact .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}
.section-contact .form-group input,
.section-contact .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
}
.section-contact .form-group input:focus,
.section-contact .form-group textarea:focus {
  border-color: #6ba82c;
  outline: none;
}
.section-contact .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .section-contact .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.section-contact .btn-primary {
  width: 100%;
  background: #6ba82c;
  color: white;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.section-contact .btn-primary:hover {
  background: #8bc63e;
}
.hidden {
  display: none !important;
}
.icon {
  height: 24px;
  width: 24px;
}
/* Footer */
.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 80px 1rem 40px;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.site-footer h3 {
  color: #6ba82c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.site-footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 14px;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #6ba82c;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 0.5rem;
}
.site-footer ul button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.site-footer ul button:hover {
  color: #6ba82c;
}
.site-footer .social-icons {
  display: flex;
  gap: 1rem;
}
.site-footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(96, 165, 250, 0.1);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.site-footer .social-icons a:hover {
  background-color: rgba(168, 218, 103, 0.5);
  color: #6ba82c;
}
.site-footer .footer-contact {
  font-size: 14px;
}
.site-footer .footer-contact span.icon {
  color: #6ba82c;
  width: 24px;
  height: 24px;
}
.site-footer .footer-contact div {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
  }
}
.site-footer .footer-bottom p {
  color: #9ca3af;
  font-size: 13px;
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-bottom .footer-links button {
  font-size: 13px;
  color: #9ca3af;
}
.site-footer .footer-bottom .footer-links button:hover {
  color: #60a5fa;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-section .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(168, 218, 103, 0.3), rgba(139, 198, 62, 0.3), rgba(168, 218, 103, 0.3));
  opacity: 0.6;
}
.hero-section .content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}
.hero-section .inner {
  max-width: 1024px;
  margin: 0 auto;
}
.hero-section .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-section .title .subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .hero-section .title {
    font-size: 3.5rem;
  }
  .hero-section .title .subtitle {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-section .title {
    font-size: 4rem;
  }
  .hero-section .title .subtitle {
    font-size: 2.5rem;
  }
}
.hero-section .description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-section .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-section .buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.hero-section .buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-width: 280px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-section .buttons .btn.btn-primary {
  background-color: #6ba82c;
  color: #fff;
  border: none;
}
.hero-section .buttons .btn.btn-primary:hover {
  background-color: #8bc63e;
}
.hero-section .buttons .btn.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.hero-section .buttons .btn.btn-secondary:hover {
  background-color: #fff;
  color: #111;
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-section .scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.hero-section .scroll-indicator .mouse .scroll-dot {
  width: 4px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: pulse 1.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
.proces-section {
  padding: 5rem 1rem;
  background-color: #fff;
}
.proces-section .container {
  max-width: 1280px;
  margin: 0 auto;
}
.proces-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.proces-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.proces-section .section-header h2 .highlight {
  color: #8bc63e;
}
@media (min-width: 768px) {
  .proces-section .section-header h2 {
    font-size: 3rem;
  }
}
.proces-section .section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 64ch;
  margin: 0 auto;
  line-height: 1.7;
}
.proces-section .steps-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.proces-section .step-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proces-section .step-card {
  width: 100%;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0 0 1px #e5e7eb, 0 6px 6px rgba(139, 198, 62, 0.1);
  transition: box-shadow 0.3s ease;
}
.proces-section .step-card:hover {
  box-shadow: 0 0px 80px 0 rgba(139, 198, 62, 0.35);
}
.proces-section .step-card:hover .step-number {
  transform: scale(1.1);
}
.proces-section .step-card .step-inner {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .proces-section .step-card .step-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.proces-section .step-card .step-number {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, #6ba82c, #a8da67);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.proces-section .step-card .step-number span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}
.step-card:hover .proces-section .step-card .step-number {
  transform: scale(1.1);
}
.proces-section .step-card .step-content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .proces-section .step-card .step-content {
    text-align: left;
  }
}
.proces-section .step-card .step-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
  transition: color 0.3s ease;
}
.step-card:hover .proces-section .step-card .step-content h3 {
  color: #6ba82c;
}
.proces-section .step-card .step-content p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.proces-section .arrow-down {
  margin: 2rem 0;
  font-size: 1.75rem;
  color: #6ba82c;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.proiecte-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}
.proiecte-section .container {
  max-width: 1280px;
  margin: 0 auto;
}
.proiecte-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.proiecte-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.proiecte-section .section-header h2 .highlight {
  color: #8bc63e;
}
@media (min-width: 768px) {
  .proiecte-section .section-header h2 {
    font-size: 3rem;
  }
}
.proiecte-section .section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 64ch;
  margin: 0 auto;
  line-height: 1.7;
}
.proiecte-section .projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .proiecte-section .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .proiecte-section .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.proiecte-section .project-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  transform: translateY(0);
}
.proiecte-section .project-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}
.proiecte-section .project-card .project-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(168, 218, 103, 0.5);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.proiecte-section .project-card .project-icon span {
  font-size: 1.25rem;
  width: 24px;
  height: 24px;
  color: #6ba82c;
}
.proiecte-section .project-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
  transition: color 0.3s ease;
}
.project-card:hover .proiecte-section .project-card h4 {
  color: #6ba82c;
}
.proiecte-section .project-card p {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.proiecte-section .project-card .technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.proiecte-section .project-card .technologies .tech-tag {
  background-color: #f3f4f6;
  color: #374151;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}
.servicii-section {
  padding: 5rem 1rem;
  background: white;
}
.servicii-section .container {
  max-width: 1280px;
  margin: 0 auto;
}
.servicii-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.servicii-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.servicii-section .section-header h2 .highlight {
  color: #8bc63e;
}
@media (min-width: 768px) {
  .servicii-section .section-header h2 {
    font-size: 3rem;
  }
}
.servicii-section .section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}
.servicii-section .section-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .servicii-section .section-feature {
    grid-template-columns: 1fr 1fr;
  }
}
.servicii-section .section-feature .feature-image {
  order: 2;
}
@media (min-width: 1024px) {
  .servicii-section .section-feature .feature-image {
    order: 1;
  }
}
.servicii-section .section-feature .feature-image img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.servicii-section .section-feature .feature-text {
  order: 1;
}
@media (min-width: 1024px) {
  .servicii-section .section-feature .feature-text {
    order: 2;
  }
}
.servicii-section .section-feature .feature-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.servicii-section .section-feature .feature-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.servicii-section .section-feature .feature-text ul {
  list-style: none;
  padding-left: 0;
}
.servicii-section .section-feature .feature-text ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #1f2937;
}
.servicii-section .section-feature .feature-text ul li::before {
  content: "✔";
  color: #6ba82c;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.servicii-section .services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .servicii-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .servicii-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.servicii-section .services-grid .service-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.servicii-section .services-grid .service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}
.servicii-section .services-grid .service-card .service-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(168, 218, 103, 0.3);
  color: red;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.servicii-section .services-grid .service-card .service-icon span {
  font-size: 1.25rem;
  width: 24px;
  height: 24px;
  color: #6ba82c;
}
.servicii-section .services-grid .service-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.servicii-section .services-grid .service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.servicii-section .services-grid .service-card .features-list {
  list-style: none;
  padding-left: 0;
}
.servicii-section .services-grid .service-card .features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  font-size: 0.9rem;
}
.servicii-section .services-grid .service-card .features-list li::before {
  content: "→";
  color: #6ba82c;
}
.section-produse {
  padding: 5rem 1rem;
  background-color: #ffffff;
}
.section-produse .container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-produse .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-produse .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8bc63e;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-produse .section-header h2 {
    font-size: 3rem;
  }
}
.section-produse .section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 64ch;
  margin: 0 auto;
  line-height: 1.7;
}
.section-produse .products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .section-produse .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-produse .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-produse .product-card {
  background-color: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}
.section-produse .product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}
.section-produse .product-card .product-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(168, 218, 103, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #6ba82c;
  font-size: 1.25rem;
}
.section-produse .product-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #1f2937;
}
.section-produse .product-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
