/* ==========================================================================
   Mextrade (ACPA Group S.A. de C.V.) - Landing Page Design System
   ========================================================================== */

:root {
  --primary: #0052a5;
  --primary-hover: #003e80;
  --primary-light: #e6f0fa;
  --primary-dark: #002d62;
  --accent: #0073e6;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0a192f;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 52, 165, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 52, 165, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.section-subtitle--left {
  max-width: 100%;
  margin: 0 0 2rem 0;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-light {
  background-color: #ffffff;
  color: var(--primary-dark);
  font-weight: 700;
}

.btn-light:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ========= Header ========= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
    border-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 0.8rem 0;
}

.header--dark {
  background: rgba(5, 15, 35, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header--light {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(0, 52, 165, 0.07);
}

.header.scrolled {
  padding: 0.5rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  height: 52px;
  flex-shrink: 0;
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 6px 14px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo img:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  transition: color 0.3s ease;
}

.header--dark .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header--dark .nav-link:hover,
.header--dark .nav-link.active {
  color: #ffffff;
}

.header--dark .nav-link::after {
  background-color: #ffffff;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.header--dark .menu-toggle {
  color: rgba(255, 255, 255, 0.9);
}

/* ========= Mobile Menu ========= */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-light);
    z-index: 999;
  }

  .nav-menu .nav-link {
    color: var(--text-main) !important;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--primary) !important;
  }

  .nav-menu .nav-link::after {
    background-color: var(--primary) !important;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.2rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========= Hero ========= */
.hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 70% 30%, rgba(0, 115, 230, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.18) saturate(0.8);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-image img {
  transform: scale(1.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-card-preview {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.feature-badge-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  color: #90c4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.badge-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero .tag-badge {
  background-color: rgba(255, 255, 255, 0.12);
  color: #7eb8ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1400px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }
}

/* ========= Services ========= */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .services-section {
    padding: 4rem 0;
  }

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

/* ========= Solutions ========= */
.solutions-section {
  padding: 6rem 0;
  background-color: var(--bg-main);
}

.solutions-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.solution-item:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.solution-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.3rem;
}

.solution-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .solutions-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solutions-section {
    padding: 4rem 0;
  }
}

/* ========= About / Nosotros ========= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text p:last-of-type {
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========= CTA Banner ========= */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 3.5rem 0;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ========= Footer ========= */
.footer {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

.footer-brand-logo {
  height: 48px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
  width: fit-content;
}

.footer-brand-logo img {
  height: 100%;
  width: auto;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  text-decoration: none;
}

.footer-nav-link svg {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--accent);
  padding-left: 1rem;
}

.footer-nav-link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-contact-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 115, 230, 0.18);
  color: #60aeff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-card-body {
  flex: 1;
  min-width: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60aeff;
  margin-bottom: 0.2rem;
}

.footer-contact-value {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.footer-contact-value--phone {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer-contact-card-arrow {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.footer-contact-card--cta {
  background: rgba(0, 115, 230, 0.1);
  border-color: rgba(0, 115, 230, 0.25);
  cursor: pointer;
}

.footer-contact-card--cta:hover {
  background: rgba(0, 115, 230, 0.2);
  border-color: rgba(0, 115, 230, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 115, 230, 0.2);
}

.footer-contact-card--cta:hover .footer-contact-card-arrow {
  color: #60aeff;
  transform: translateX(3px);
}

.footer-contact-card--cta:hover .footer-contact-card-icon {
  background: rgba(0, 115, 230, 0.3);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* ========= Services Image Banner ========= */
.services-image-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.services-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 6s ease;
}

.services-section:hover .services-image-banner img {
  transform: scale(1.05);
}

.services-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 10, 30, 0.2) 0%,
      rgba(0, 30, 80, 0.65) 70%,
      rgba(0, 10, 40, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 3rem;
}

.services-image-caption {
  color: #ffffff;
}

.services-image-caption span {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.services-image-caption p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* ========= Solutions Image Panel ========= */
.solutions-image-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: stretch;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}

.solutions-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 5s ease;
}

.solutions-section:hover .solutions-image-panel img {
  transform: scale(1.04);
}

.solutions-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 82, 165, 0.12);
}

.solutions-image-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .solutions-wrapper[style] {
    grid-template-columns: 1fr 1fr !important;
  }

  .solutions-image-panel {
    display: none;
  }
}

@media (max-width: 900px) {
  .solutions-wrapper[style] {
    grid-template-columns: 1fr !important;
  }
}

/* ========= About Image Block ========= */
.about-image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.about-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 5s ease;
}

.about-image-block:hover img {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 82, 165, 0.1);
}

.about-image-badge svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about-image-block {
    aspect-ratio: 16 / 7;
  }

  .services-image-banner {
    height: 220px;
  }

  .services-image-overlay {
    padding: 1.5rem;
  }

  .services-image-caption span {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .services-image-banner {
    height: 180px;
  }
}