* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.landing-page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-section .logo {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo-section .logo:hover {
  opacity: 0.85;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c3ce1 0%, #00d4aa 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-links .nav-cta:hover {
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(108, 60, 225, 0.28);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
  padding: 0.2rem;
}

.hero-section {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0e17 0%, #1a1040 40%, #2a1060 70%, #0f0e17 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -18%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -12%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0.8) contrast(0.95);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(7, 9, 20, 0.58) 0%, rgba(11, 8, 31, 0.46) 55%, rgba(8, 10, 21, 0.62) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.hero-text {
  max-width: 800px;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, #a78bfa 0%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #a7a9be;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-cta {
  background: linear-gradient(135deg, #6c3ce1 0%, #00d4aa 100%);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.35);
}

.hero-cta:hover {
  box-shadow: 0 8px 30px rgba(108, 60, 225, 0.45);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-cta.hero-cta-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.hero-cta.hero-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
  padding: 0.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: 0.46rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  color: #dbeafe;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
}

.hero-trust-pill i {
  width: 12px;
  height: 12px;
  color: #a78bfa;
  flex: 0 0 auto;
}

.highlight-item {
  padding: 1.1rem 1rem;
  background: transparent;
}

.highlight-item h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.highlight-item p {
  margin: 0.2rem 0 0;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.94rem;
}

.highlight-item:nth-child(1),
.highlight-item:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.highlight-item:nth-child(1),
.highlight-item:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.inline-icon {
  width: 20px;
  height: 20px;
}

.section {
  padding: 1rem 0;
}

#top,
#about,
#solutions,
#projects,
#expertise,
#contact {
  scroll-margin-top: 92px;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-divider {
  margin: 0 auto 1rem;
}

.section-header-center .section-description {
  max-width: 760px;
  margin: 0.8rem auto 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-divider {
  width: 92px;
  height: 4px;
  background: linear-gradient(90deg, #6c3ce1 0%, #00d4aa 100%);
  border-radius: 999px;
  margin: 0 0 1rem 0;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-top: 1rem;
}

.solutions-heading {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.22;
  color: #0f172a;
}

.about-section {
  background: #f8f7ff;
}

.about-section.section {
  padding-bottom: 1.8rem;
}

.section-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c3ce1;
  margin-bottom: 0.7rem;
}

.text-accent {
  background: linear-gradient(135deg, #6c3ce1 0%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section .section-label {
  position: relative;
  padding-bottom: 0.65rem;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-section .section-label::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c3ce1 0%, #00d4aa 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.about-copy .section-title {
  margin-bottom: 1rem;
}

.about-copy p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 0.9rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-feature i {
  width: 18px;
  height: 18px;
  color: #00b894;
}

.about-feature span {
  font-size: 0.87rem;
  font-weight: 600;
  color: #2a2950;
}

.about-visual {
  height: 100%;
  display: flex;
  align-items: center;
}

.about-visual-card {
  background: linear-gradient(135deg, #0f0e17 0%, #2a2950 100%);
  border-radius: 24px;
  padding: 1.75rem;
  color: #fffffe;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 14, 23, 0.22);
  height: auto;
  min-height: 78%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-visual-card::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -24%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.about-visual-card h3 {
  position: relative;
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
  font-weight: 700;
}

.about-visual-card p {
  position: relative;
  margin: 0;
  color: #a7a9be;
  line-height: 1.62;
}

.tech-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.tech-tag {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #cfd2e9;
  font-weight: 500;
}

.solutions-section {
  background: #ffffff;
}

.solutions-section.section {
  padding-top: 2.15rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.products-grid {
  grid-template-columns: repeat(2, 1fr);
}

.projects-section {
  padding-top: 2.8rem;
}

.solution-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  background: white;
}

.solution-card:hover {
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.15);
  transform: translateY(-8px);
  border-color: #0ea5e9;
}

.solution-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-image {
  transform: scale(1.1);
}

.solution-icon-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 28px;
  height: 28px;
  color: #0ea5e9;
}

.card-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.solution-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
}

.card-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.95rem;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #6c3ce1 0%, #00d4aa 100%);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.card-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(108, 60, 225, 0.32);
}

.expertise-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding-top: 0.35rem;
  padding-bottom: 3.4rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.expertise-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.expertise-item:hover {
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.12);
  transform: translateY(-6px);
  border-color: #0ea5e9;
}

.expertise-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.expertise-item:hover .expertise-icon-wrapper {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.expertise-icon {
  width: 40px;
  height: 40px;
  color: #0ea5e9;
  transition: color 0.3s ease;
}

.expertise-item:hover .expertise-icon {
  color: white;
}

.expertise-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.expertise-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.vision-section {
  background: linear-gradient(180deg, #0f172a 0%, #172338 100%);
  color: white;
  padding: 1.4rem 0 5.1rem;
}

.vision-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision-icon-large {
  margin-bottom: 2rem;
}

.vision-brain-icon {
  width: 80px;
  height: 80px;
  color: #06b6d4;
  margin: 0 auto;
}

.vision-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.vision-text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.cta-section {
  background: #ffffff;
  padding: 0;
}

.cta-box {
  background: linear-gradient(135deg, #0f0e17 0%, #1a1040 40%, #2a1060 70%, #0f0e17 100%);
  border-radius: 0 !important;
  padding: 3.2rem 2rem;
  text-align: center;
  color: #fffffe;
  width: 100%;
}

.cta-box h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.cta-box p {
  margin: 0 auto;
  max-width: 720px;
  color: #a7a9be;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-actions {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  background: linear-gradient(135deg, #6c3ce1 0%, #00d4aa 100%);
}

.cta-link-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.cta-link-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cta-link-btn-whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.cta-link-btn i {
  width: 16px;
  height: 16px;
}

.footer {
  background: #0f0e17;
  color: #a7a9be;
  padding: 3.7rem 0 2rem;
}

.footer-content {
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(170px, 1fr) minmax(170px, 1fr) minmax(260px, 1.35fr);
  column-gap: 2.8rem;
  row-gap: 1.2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 0.7rem;
}

.footer-brand span {
  display: block;
  font-size: 1.32rem;
  font-weight: 700;
  color: #fffffe;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0 0 0.65rem;
}

.footer-meta {
  font-size: 0.76rem;
  color: rgba(167, 169, 190, 0.7);
}

.footer h4 {
  margin: 0 0 0.9rem;
  font-size: 0.83rem;
  color: #fffffe;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  text-decoration: none;
  color: #a7a9be;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fffffe;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact-item i {
  width: 14px;
  height: 14px;
  color: #a78bfa;
  margin-top: 0.2rem;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.86rem;
  color: #a7a9be;
  line-height: 1.7;
  margin: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #fffffe;
}

.footer-social {
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #a7a9be;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #a7a9be;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social i {
  width: 14px;
  height: 14px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.4rem 0 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #8f91a7;
  margin: 0;
}

.footer-motto {
  font-size: 0.8rem;
  color: #8f91a7;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-side {
    max-width: 620px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    height: auto;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-section {
    padding-top: 2.2rem;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-section {
    padding-top: 0.35rem;
    padding-bottom: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .header-content {
    height: 70px;
  }

  .logo-section .logo {
    height: 40px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-toggle svg {
    width: 26px;
    height: 26px;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
    gap: 0.9rem;
  }

  .nav-links .nav-cta {
    width: 100%;
  }

  .hero-section {
    min-height: 70vh;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .highlight-item:nth-child(1),
  .highlight-item:nth-child(2),
  .highlight-item:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .highlight-item:nth-child(4) {
    border-bottom: 0;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 1rem 0;
  }

  .about-section.section {
    padding-bottom: 1.35rem;
  }

  .solutions-section.section {
    padding-top: 1.6rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .projects-section {
    padding-top: 1.9rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-section {
    padding-top: 0.35rem;
    padding-bottom: 2.2rem;
  }

  .vision-title {
    font-size: 2.25rem;
  }

  .vision-text {
    font-size: 1.25rem;
  }

  .vision-section {
    padding-top: 0.35rem;
  }

  .cta-box {
    padding: 2.2rem 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    margin-bottom: 0.6rem;
  }
}
