/* ==========================================================================
   TIC GLOBAL — NEOTECH THEME REPLICA (VANILLA CSS)
   ========================================================================== */

:root {
  --primary: #0e1927;
  --primary-dark: #070d17;
  --primary-light: #17283c;
  --accent: #1665d8;
  --accent-hover: #0d4eb0;
  --accent-green: #00d084;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --font-main: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* --------------------------------------------------------------------------
   HEADER & IMMERSIVE DARK HERO FRAME
   -------------------------------------------------------------------------- */
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.topbar {
  background-color: rgba(7, 13, 23, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #cbd5e1;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.topbar-item svg {
  color: #38bdf8;
  width: 15px;
  height: 15px;
}

.topbar-item a {
  color: #e2e8f0;
}

.topbar-item a:hover {
  color: #ffffff;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social a {
  color: #cbd5e1;
  transition: var(--transition);
}

.topbar-social a:hover {
  color: var(--accent-green);
}

/* --------------------------------------------------------------------------
   NAVBAR (TRANSPARENT / GLASS OVERLAY)
   -------------------------------------------------------------------------- */
.navbar {
  position: relative;
  background-color: rgba(14, 25, 39, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(7, 13, 23, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  max-width: 1380px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 40px;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.04);
}

.nav-brand-text {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0 auto;
}

.nav-menu a {
  font-weight: 700;
  font-size: 14.5px;
  color: #ffffff;
  position: relative;
  padding: 8px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #38bdf8;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #38bdf8 0%, var(--accent-green) 100%);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 40px;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.phone-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.phone-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 101, 216, 0.4);
}

.phone-badge-text {
  display: flex;
  flex-direction: column;
}

.phone-badge-label {
  font-size: 10.5px;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-badge-number {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   HERO SLIDER — GRAND FRAME ADJUSTMENTS
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  min-height: 740px;
  background-color: var(--primary-dark);
  color: #ffffff;
  overflow: hidden;
  perspective: 1000px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12) filter(blur(4px));
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1), filter 1s ease;
  will-change: transform, filter;
}

.slide.active .slide-bg {
  transform: scale(1.0) filter(blur(0px));
  animation: kenburns 12s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1.0) translate(0, 0); }
  50% { transform: scale(1.06) translate(-10px, -5px); }
  100% { transform: scale(1.03) translate(10px, 5px); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 23, 0.94) 0%, rgba(14, 25, 39, 0.82) 55%, rgba(14, 25, 39, 0.45) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  padding: 100px 0;
}

.slide-tag {
  display: inline-block;
  background: rgba(22, 101, 216, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-20px);
  box-shadow: 0 8px 24px rgba(22, 101, 216, 0.15);
}

.slide.active .slide-tag {
  animation: slideTagIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes slideTagIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(35px) rotateX(8deg);
  transform-origin: bottom;
}

.slide.active .slide-title {
  animation: slideTitleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

@keyframes slideTitleIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.slide-desc {
  font-size: 19px;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 680px;
  opacity: 0;
  transform: translateY(25px);
}

.slide.active .slide-desc {
  animation: slideDescIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes slideDescIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-cta-wrap {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.slide.active .slide-cta-wrap {
  animation: slideBtnIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

@keyframes slideBtnIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #1665d8 0%, #0d4eb0 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 101, 216, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d72f3 0%, #1159c9 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(22, 101, 216, 0.55);
}

.slider-nav-container {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot.active {
  width: 36px;
  background: var(--accent-green);
  box-shadow: 0 0 12px rgba(0, 208, 132, 0.6);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 25, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 28px rgba(22, 101, 216, 0.5);
}
  background-color: var(--accent);
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   FEATURE CARDS GRID (4 PILARES)
   -------------------------------------------------------------------------- */
.feature-cards-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(22, 101, 216, 0.3);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: rgba(22, 101, 216, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrap svg,
.feature-icon-wrap img {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section-subtitle {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  border: 6px solid #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.about-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 208, 132, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-highlight-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SERVICES GALLERY
   -------------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background-color: var(--primary);
  color: #ffffff;
}

.services-section .section-title {
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.svc-item {
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.svc-item:hover {
  transform: translateY(-6px);
  background-color: #1a2e46;
  border-color: var(--accent);
}

.svc-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.svc-item p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
}

.svc-link {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   PROCESS SECTION (01 - 04)
   -------------------------------------------------------------------------- */
.process-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.process-step {
  background-color: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.step-num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(22, 101, 216, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.process-step p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.badge-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  margin-top: 40px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 20px 24px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.faq-header svg {
  transition: var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-header svg {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-body {
  display: block;
}

/* --------------------------------------------------------------------------
   SKILLS & PROGRESS BARS
   -------------------------------------------------------------------------- */
.skills-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.skill-bar-wrap {
  margin-bottom: 24px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--primary);
}

.skill-progress-bg {
  height: 10px;
  background-color: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-green) 100%);
  border-radius: 10px;
  transition: width 1.2s ease-in-out;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS & PARTNERS
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.testi-card {
  background-color: var(--bg-light);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.testi-quote {
  font-size: 14.5px;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.testi-role {
  font-size: 13px;
  color: var(--text-muted);
}

.partners-strip {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  background-color: #ffffff;
}

.partners-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding: 80px 0 30px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   TERMINAL CLI BASH COMPONENT
   -------------------------------------------------------------------------- */
.terminal-box {
  background-color: #070d17;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
  margin: 40px 0;
}

.terminal-header {
  background-color: #0e1927;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.dot-red { width: 12px; height: 12px; border-radius: 50%; background-color: #ef4444; }
.dot-yellow { width: 12px; height: 12px; border-radius: 50%; background-color: #f59e0b; }
.dot-green { width: 12px; height: 12px; border-radius: 50%; background-color: #10b981; }

.terminal-title {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

.terminal-body {
  padding: 24px;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.8;
}

.t-prompt { color: #38bdf8; font-weight: 700; }
.t-cmd { color: #f1f5f9; font-weight: 600; }
.t-output { color: #4ade80; }
.t-sub { color: #94a3b8; padding-left: 16px; }

/* --------------------------------------------------------------------------
   OPEN SOURCE BENEFITS SECTION
   -------------------------------------------------------------------------- */
.opensource-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.opensource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.opensource-card {
  background-color: var(--bg-light);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--accent-green);
  transition: var(--transition);
}

.opensource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.opensource-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.opensource-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.latam-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(22, 101, 216, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   TRAINING TRACKS (CAPACITACIÓN TÉCNICA)
   -------------------------------------------------------------------------- */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.track-card {
  background-color: var(--bg-card);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.track-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.track-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   ENHANCED PROCESS STEP CARDS WITH IMAGES
   -------------------------------------------------------------------------- */
.process-step-enhanced {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(22, 101, 216, 0.3);
}

.process-img-box {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.process-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-enhanced:hover .process-step-img {
  transform: scale(1.08);
}

.process-step-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14, 25, 39, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #38bdf8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
}

.process-step-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.process-step-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.process-step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FAQ FEATURED SIDE BANNER WITH IMAGE
   -------------------------------------------------------------------------- */
.faq-banner-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  margin-top: 24px;
}

.faq-banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.faq-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 25, 39, 0.2) 0%, rgba(14, 25, 39, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.faq-banner-tag {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.faq-banner-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .faq-grid,
  .skills-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .slide-title {
    font-size: 36px;
  }
}
