/* ==========================================================================
   DNGX - Main Stylesheet
   Ultra-professional technology company website
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
  --primary: #1BA5DE;
  --primary-dark: #1590c4;
  --accent: #E67D22;
  --accent-dark: #cf6d18;
  --dark-1: #0B1120;
  --dark-2: #0F172A;
  --dark-3: #1E293B;
  --text-light: #F8FAFC;
  --text-dark: #334155;
  --text-muted: #94A3B8;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--light {
  background: var(--off-white);
  color: var(--text-dark);
}

.section--white {
  background: var(--white);
  color: var(--text-dark);
}

.section--dark {
  background: var(--dark-2);
  color: var(--text-light);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(27, 165, 222, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section--dark .section__tag {
  background: rgba(27, 165, 222, 0.15);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  color: inherit;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section--light .section__subtitle,
.section--white .section__subtitle {
  color: #64748b;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 165, 222, 0.35);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 125, 34, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.header__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-1);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(11, 17, 32, 0.9) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 165, 222, 0.3), transparent 70%);
  top: -10%;
  right: -5%;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 125, 34, 0.2), transparent 70%);
  bottom: -5%;
  left: -5%;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 165, 222, 0.15), transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 120px 0 80px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. Stats
   -------------------------------------------------------------------------- */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats__item {
  text-align: center;
  padding: 8px 16px;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stats__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  display: inline;
}

.stats__plus {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
}

.stats__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}

.stats__label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   8. Sobre
   -------------------------------------------------------------------------- */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre__text .section__tag {
  margin-bottom: 12px;
}

.sobre__text .section__title {
  margin-bottom: 24px;
}

.sobre__text p {
  color: #64748b;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.sobre__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sobre__image-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.sobre__image-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(27, 165, 222, 0.15), transparent 60%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   9. Clientes Carousel
   -------------------------------------------------------------------------- */
.carousel {
  overflow: hidden;
  margin-top: 16px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel__track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}

.carousel__track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}

.carousel__track img:hover {
  filter: grayscale(0%) opacity(1);
}

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

/* --------------------------------------------------------------------------
   10. Services Cards
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card--glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.card--glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), rgba(27, 165, 222, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11. Products
   -------------------------------------------------------------------------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.product__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--off-white);
}

.product__image img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
}

.product__info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-2);
}

.product__desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.product:hover .product__link {
  gap: 10px;
}

/* --------------------------------------------------------------------------
   12. Technologies
   -------------------------------------------------------------------------- */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.tech__item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 100px;
}

.tech__item img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: var(--transition);
}

.tech__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.tech__item:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: block;
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  color: var(--white);
}

.contact__icon--whatsapp { background: #25D366; }
.contact__icon--email { background: var(--primary); }
.contact__icon--map { background: var(--accent); }

.contact__card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--dark-2);
}

.contact__card p {
  font-size: 0.9rem;
  color: #64748b;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact__map iframe {
  display: block;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--dark-1);
  color: var(--text-muted);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer__contact i {
  margin-right: 8px;
  color: var(--primary);
  width: 16px;
}

.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   15. WhatsApp Float
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* --------------------------------------------------------------------------
   16. Scroll Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.services__grid .reveal:nth-child(2),
.products__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3),
.products__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   17. Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services__grid,
  .products__grid,
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__grid {
    gap: 40px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   18. Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav .header__link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 140px 0 100px;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 36px 24px;
  }

  .stats__item:not(:last-child)::after {
    display: none;
  }

  .stats {
    margin-top: -30px;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services__grid,
  .products__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .tech__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .tech__item {
    padding: 20px 12px;
    min-height: 80px;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* --------------------------------------------------------------------------
   19. Hero Badge & Tech Badges
   -------------------------------------------------------------------------- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(230, 125, 34, 0.15);
  border: 1px solid rgba(230, 125, 34, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.hero__tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.hero__tech-badge:hover {
  background: rgba(27, 165, 222, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   20. Product Badges & Icon Products
   -------------------------------------------------------------------------- */
.product__badge {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, var(--accent), #ff9a3c);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  vertical-align: middle;
  margin-left: 4px;
}

.product__image--dark {
  background: linear-gradient(135deg, #1a2332, #0f1923);
}

.product__image--dark img {
  object-fit: contain;
  padding: 24px;
}

.product__image--light {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.product__image--light img {
  object-fit: contain;
  padding: 24px;
}

.product__image--logo {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__image--logo img {
  object-fit: contain;
  padding: 28px;
  max-height: 140px;
  border-radius: 16px;
}

.product__image--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  min-height: 180px;
}

.product__image--icon i {
  font-size: 3.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.product:hover .product__image--icon i {
  color: var(--accent);
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   21. Featured Card (IA highlight)
   -------------------------------------------------------------------------- */
.card--featured {
  border: 1px solid rgba(230, 125, 34, 0.3) !important;
  background: linear-gradient(135deg, rgba(230, 125, 34, 0.08), rgba(27, 165, 222, 0.05)) !important;
  position: relative;
  overflow: hidden;
}

.card--featured::before {
  content: 'IA';
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 10px;
  background: var(--accent);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.card--featured .card__icon i {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   22. Tech Featured Items (Claude, OpenAI)
   -------------------------------------------------------------------------- */
.tech__item--featured {
  background: linear-gradient(135deg, rgba(230, 125, 34, 0.1), rgba(27, 165, 222, 0.1));
  border: 1px solid rgba(230, 125, 34, 0.3);
}

.tech__icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.tech__icon-text i {
  font-size: 1.6rem;
  color: var(--primary);
}

.tech__item--featured .tech__icon-text i {
  color: var(--accent);
}

.tech__item:hover .tech__icon-text i {
  color: var(--accent);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .hero__badges {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
