:root {
  --primary: #00e6b8;
  --primary-dark: #00b894;
  --secondary: #0984e3;
  --dark: #2d3436;
  --light: #f5f6fa;
  --accent: #6c5ce7;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --bg-dark: #0a192f;
  --bg-darker: #071120;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--light);
  line-height: 1.5;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 9%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 25, 47, 0.98);
}

.logo img {
  height: 78px;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  position: relative;
  color: var(--bg-darker);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.5s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  transition: width 0.5s ease-in-out;
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  text-decoration: none !important;
}

.nav-item-active a{
  color: var(--primary-dark);
  text-decoration: none !important;
  font-weight: 500;
}

.login-button {
  background: var(--gradient);
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-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: 0.5s;
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 230, 184, 0.5);
}

.login-button a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-darker);
  font-size: 1.5rem;
  cursor: pointer;
}

.solution-section {
  padding: 8rem 10% 4rem 10%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.solution-grid-main{
  max-width: 1250px;
  margin: 0 auto;
}

.icon-heading-row {
  display: flex;
  align-items: center; 
  gap: 10px; 
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 1.3rem;
  color: var(--primary);
  align-self: start;
}

.card-icon i {
  transition: all 0.3s ease;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.solution-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -619px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  top: 85%;
}

.image-container {
  position: relative;
  padding-top: 53%;
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,25,47,0.8), transparent);
  z-index: 1;
}

.solution-image:hover img {
  transform: scale(1.05);
}

.solution-content {
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 3.7rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 230, 184, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 230, 184, 0.4);
}

.cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00aced; 
}

.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-partners img {
  zoom: 1.2;
  width: 150px;
  opacity: 0.7;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary);
}
.nav-menu.active {
  transform: translateX(0);
}

.menu-toggle.active {
  transform: rotate(90deg);
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes iconPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes gradientPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.solution-section {
  animation: fadeIn 0.8s ease-out both;
}

.section-header {
  animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.solution-image {
  animation: fadeIn 0.8s ease-out 0.7s both;
}

.solution-content {
  animation: fadeIn 0.8s ease-out 0.9s both;
}

.image-container img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.image-container:hover img {
  transform: scale(1.05);
}

.cta-button {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  background-size: 200% auto;
  animation: gradientPulse 3s linear infinite;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:hover .arrow {
  animation: float 0.8s ease-in-out infinite;
}

.footer-social a {
  transition: transform 0.3s ease;
}

.nav-item.dropdown {
    position: relative;
    --primary: #00e6b8;
    --primary-dark: #00c9a3;
    --light: #f5f6fa;
    --dark: #0a192f;
}

.dropdown-trigger {
  padding: 0%;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    padding: 8px;
    min-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item.dropdown:hover .dropdown-menu{
    opacity: 1;
    transform: translateY(0) ;
    visibility: visible ;
}

.nav-item.dropdown.no-hover:hover .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 230, 184, 0.1), 
                transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(0, 230, 184, 0.08);
    transform: translateX(4px);
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 184, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.navbar.scrolled .dropdown-menu {
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(0, 230, 184, 0.15);
}

.navbar.scrolled .dropdown-item {
    color: var(--light);
}

.navbar.scrolled .dropdown-icon {
    background: rgba(0, 230, 184, 0.15);
}

.navbar.scrolled .dropdown-item:hover {
    background: rgba(0, 230, 184, 0.12);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-item.dropdown.who-we-are .dropdown-icon {
    background: rgba(100, 181, 246, 0.1);
}

.nav-item.dropdown.who-we-are .dropdown-item:hover {
    background: rgba(100, 181, 246, 0.08);
}

.nav-item.dropdown.who-we-are .dropdown-item::before {
    background: linear-gradient(90deg, 
                transparent, 
                rgba(100, 181, 246, 0.1), 
                transparent);
}

.navbar.scrolled .nav-item.dropdown.who-we-are .dropdown-icon {
    background: rgba(100, 181, 246, 0.15);
}

.navbar.scrolled .nav-item.dropdown.who-we-are .dropdown-item:hover {
    background: rgba(100, 181, 246, 0.12);
}


.feature {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 224, 255, 0.15);
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  filter: blur(146px);
  opacity: 0.09;
  border-radius: 20px;
}

.feature-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(43, 109, 118, 0.3);
  border-left-color: var(--secondary);
}

.feature-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  padding-left: 0.7rem;
}

.feature-card h3 {
  color:var(--primary) ;
  margin: 1rem 0rem;
  font-size: 1rem;
}

.feature-card p {
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  padding: 0.4rem 0;
}

.feature-card ul{
  list-style: none;
}
.feature-card li {
  position: relative;
  padding-left: 1.5rem;
  margin: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary);
}

.feature-card li::before {
  content: '→ ';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.feature-card .no-point{
  font-weight: 400 !important;
  color: rgba(255,255,255,0.8) !important;
}

.feature-card span{
  font-weight: 600;
  color: #ffffff;
}

.feature-card b{
  color: #ffffff;
}

.feature-button{
  text-align: center;
  padding: 5rem 0 0 0;
}

.quote-section {
  text-align: center;
  padding: 2rem 0rem 0 0;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  quotes: "“" "”" "‘" "’";
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-text::before {
  content: open-quote;
}

.quote-text::after {
  content: close-quote;
}

.quote-text a {
  text-decoration: none;
  font-weight: 500;
  -webkit-text-fill-color: #99c3ff;

}
.quote-text a:hover {
  text-decoration: none;
  font-size: 1.6rem;
  -webkit-text-fill-color: #ba79f3;
  transition: all 0.3s ease;
}

.result-section {
  padding: 70px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.result-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.card {
  flex: 0 0 250px;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 25px 20px;
  text-align: center;
  min-height: 240px;
}

.icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: #00aaff;
}

.card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #ffffff;
}

.card p {
  font-size: 15px;
  color: #d0d0d0;
  margin: 0;
  line-height: 1.6;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.benefits-section {
  background-color: #0a192f;
  padding: 60px 20px 20px 0px;
  font-family: 'Montserrat', sans-serif;
}

.benefits-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.benefits-section p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.7;
}

.benefits-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-section li.no-point {
  font-size: 20px;
  color: #4031e3;
  font-weight: 500;
}

.intro-point{
  color:#7fd0ff;
  font-weight: 500;
  font-size: 19px;
}


@media (min-width: 1921px) {
  html {
    font-size: 18px; 
  }

  .logo img {
    height: 90px;
  }

  .nav-menu {
    gap: 2.5rem;
  }

  .nav-item a {
    font-size: 1rem;
  }

  .description ul {
    padding-left: 1.5rem;
  }

  .footer-content {
    max-width: 1600px;
    gap: 5rem;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-legal p {
    font-size: 1rem;
  }

  .legal-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    max-width: none;
    margin: 0 7%;
  }

  .dropdown-menu {
    min-width: 500px;
  }

  .dropdown-title {
    font-size: 1rem;
  }
  
  .solution-section{
    padding: 8rem 15%;
  }

  .solution-grid-main {
    max-width: 1800px;
    margin: 0;
  }

  .image-container img{
    transform: scale(0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
  }

  .solution-image{
    padding-top: 5rem;
    box-shadow: none;
    top: 73%;
  }
  .solution-image:hover img {
    transform: scale(0.85);
  }
}

@media (max-width: 1440px) {
  .navbar {
    padding: 0.8rem 6%;
  }

  .logo img {
    height: 60px;
  }

  .nav-item a {
    font-size: 0.9rem;
  }

  .login-button {
    padding: 0.5rem 1.2rem;
  }

  .footer-content {
    gap: 2.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .section-header h2, .benefits-section h2, .result-title {
    font-size: 2.2rem;
  }

  .solution-section {
    padding: 8rem 10% 4rem 10%;
  }

  .feature{
    padding: 1rem;
  }

  .intro-text, .benefits-section p {
    font-size: 1.05rem;
  }

  .card{
    min-height: auto;
  }
  
  .card h3{
    font-size: 1rem;
  }

  .quote-section{
    padding: 0%;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .footer-bottom{
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0.5rem 5%;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-item a, .nav-item-active, .login-button {
    font-size: 0.7rem;
  }

  .logo img {
    height: 55px;
  }

  .footer-content,
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-logo img {
    height: 32px;
  }

  .footer-contact h4,
  .link-group h4 {
    font-size: 1rem;
  }

  .footer-contact p,
  .link-group a,
  .footer-legal p,
  .legal-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .learn-more-btn {
    font-size: 0.95rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2, .benefits-section h2, .result-title {
    font-size: 2rem;
  }

  .intro-text, .benefits-section p {
    font-size: 1rem;
  }

  .section-header h2{
    margin-bottom: -1rem;
  }

  .benefits-section h2 {
    margin-top: -8rem;
  }

  .solution-section {
    padding: 8rem 9% 4rem 10%;;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(413px, 1fr));
    gap: 32rem;
    align-items: center;
  }
  .solution-image {
    box-shadow: none;
  }

  .image-container {
    transform: scale(0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .solution-image {
    margin-top: -725px;
  }

  .benefits-section {
    padding: 0px 20px 20px 0px;
  }
} 

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 5%;
    flex-wrap: wrap;
  }

  .logo img {
    height: 55px;
  }

  .nav-menu {
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item a,
  .nav-item-active,
  .login-button {
    font-size: 0.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .learn-more-btn {
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 0 5%;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .dropdown-menu {
    min-width: 280px;
    top: 100%;
    left: -4.5rem;
  }

  .dropdown-item {
    padding: 10px 14px;
  }

  .dropdown-title {
    font-size: 0.7rem;
  }

  .dropdown-icon{
    height: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    margin-bottom: 1rem;
  }

  .benefits-section h1 {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .section-header h2, .benefits-section h2, .result-title {
    font-size: 1.8rem;
  }

  .section-header{
    margin-bottom: 4rem;
  }

  .solution-image {
    margin-top: -800px;
  }

  .benefits-section{
    margin-top: -14rem;
  }

  .feature{
    display: block;
    margin-top: 0rem;
  }

  .feature-card {
    margin: 2rem 0;
  }

  .feature-card h2, .card-icon {
    font-size: 1.2rem;
  }

  .feature-card li, .feature-card p{
    font-size: 0.9rem;
  }

  .result-section {
    padding: 1rem 0.2rem;
  }

  .card {
    flex: 0 1 247px;
    padding: 18px 6px;
    min-height: 0rem;
  }

  .quote-section  {
    padding: 3rem 0 0 0;
  }

  .footer-contact p, .link-group a, .footer-legal p, .legal-links a {
    font-size: 0.75rem;
  }

  .site-footer {
    padding: 0 0 1rem 0;
  }
}

@media (max-width: 426px) {
  .section-header h2, .benefits-section h2, .result-title  {
    font-size: 1.5rem;
  }

  .text-container p, .interoperability-content p, .text-container p, .section-subtitle {
    font-size: 0.94rem;
  }

  .image-container{
    transform: scale(0.96);
  }

  .intro-text {
    margin-bottom: 1.7rem;
  }

  .benefits-section h2 {
    margin-top: -17rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }
  
  .description {
    margin-top: 1rem;
  }

  .description ul{
    padding-left: 0%;
  }

  .footer-bottom {
    display: block;
  }

  .footer-legal {
    padding: 1.5rem 0 0 0;
    text-align: center;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32rem;
    align-items: center;
  }

  .feature {
    padding: 0rem;
  }

  .feature-card{
    padding: 2rem 1.5rem;
  }

  .feature-card h2, .card-icon {
    font-size: 1.120rem;
  }

  .feature-card li{
    margin: 1rem 1rem 1rem 0;
  }

  .quote-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 376px) {
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32rem;
    align-items: center;
  }

  .card {
    flex: 0 0 280px;
    padding: 18px 6px;
    min-height: 0rem;
  }

  .quote-text {
    font-size: 1.1rem;
  }
  .quote-section {
    padding: 2rem 0 0 0;
  }
  .solution{
    left: -5.5rem !important;
  }
}

@media (max-width: 320px) {
  .section-header h2, .benefits-section h2, .result-title {
    font-size: 1.3rem;
  }

  .intro-text, .benefits-section p {
    font-size: 0.84rem;
  }

  .intro-point{
    font-size: 0.9rem;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    gap: 32rem;
    align-items: center;
  }

  .image-container {
    transform: scale(1);
  }

  .solution-image {
    margin-top: -875px;
  }

  .benefits-section {
    margin-top: -20rem;
  }

  .card {
    flex: 0 0 225px;
  }

  .footer-contact p, .link-group a, .footer-legal p, .legal-links a {
    font-size: 0.75rem;
  }

  .solution {
    left: -5.5rem !important;
  }

  .dropdown-menu{
    left: -4.5rem;
  }

  .footer-social a{
    font-size: 1.3rem;
  }
  
}