:root {
  --color-blue: #173C7A;
  --color-blue-dark: #102A56;
  --color-blue-black: #0A1930;
  --color-yellow: #FFB600;
  --color-orange: #E85D25;
  --color-white: #FFFFFF;

  --font-main: 'Montserrat', sans-serif;
  --container-width: 1140px;
  --border-radius-card: 20px;
  --header-height: 80px;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}



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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-in {
  opacity: 0;
  animation: fadeUp 0.8s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(16, 42, 86, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.desktop-nav a {
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  transition: var(--transition-smooth);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-yellow);
  transition: var(--transition-smooth);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}

.hamburger-btn .bar {
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-btn .top {
  transform: translateY(-9px);
}

.hamburger-btn .bottom {
  transform: translateY(9px);
}

.hamburger-btn.active .top {
  transform: translateY(0) rotate(45deg);
  background-color: var(--color-yellow);
}

.hamburger-btn.active .middle {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger-btn.active .bottom {
  transform: translateY(0) rotate(-45deg);
  background-color: var(--color-yellow);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 100%;
  height: 0;
  background: var(--color-blue-dark);
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}

.mobile-menu.open {
  height: 100vh;
  padding-top: 40px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 8px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-image: url('../images/hero-image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgba(23, 60, 122, 0.95) 0%, rgba(23, 60, 122, 0.85) 50%, rgba(23, 60, 122, 0.4) 100%);
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-yellow);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 800px;
}

.hero-italic {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-body {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-yellow);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-icon {
  width: 24px;
  height: auto;
  object-fit: contain;
  display: block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 182, 0, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.clients-strip {
  background-color: var(--color-orange);
  padding: 30px 0;
  position: relative;
  z-index: 5;
}

.clients-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-white);
  opacity: 0.7;
  text-transform: uppercase;
  font-style: italic;
  transition: 0.3s;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.services-section {
  background-color: var(--color-blue);
  padding: 100px 0;
}

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

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-card);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  background: transparent;
  position: relative;
  top: 0;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-yellow);
  top: -10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-wrapper span {
  font-size: 4rem;
  color: #FF7F50;
  transition: 0.4s;
}

.service-card:hover .icon-wrapper span {
  color: var(--color-yellow);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--color-yellow);
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.stats-section {
  background-color: var(--color-blue);
  padding: 60px 0 120px 0;
}

.stats-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.stats-big-number {
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.huge-text {
  display: block;
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 0.9;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-label {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stats-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.stats-list li:hover {
  transform: translateX(10px);
  color: var(--color-white);
}

.bullet-icon {
  color: var(--color-yellow);
  font-size: 1.5rem;
}

.bottom-cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-image: url('../images/cta-image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(232, 93, 37, 0.4), rgba(23, 60, 122, 0.7));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 40px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.main-footer {
  background-color: var(--color-blue-black);
  color: #bbb;
  padding-top: 80px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 35px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-col h4 {
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 1rem;
  position: relative;
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.footer-links a:hover {
  color: var(--color-yellow);
  padding-left: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact-list .material-symbols-rounded {
  color: var(--color-yellow);
}

.footer-bottom {
  background-color: #050d1a;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .stats-layout {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .stats-list li {
    justify-content: center;
    text-align: left;
  }

  .clients-grid {
    justify-content: center;
    gap: 30px;
  }
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-yellow);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-icon {
  width: 24px;
  height: auto;
  object-fit: contain;
  display: block;
}



.clients-strip {
  background-color: var(--color-orange);
  padding: 30px 0;
  position: relative;
  z-index: 5;
}

.clients-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.client-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s ease;
  filter: brightness(0) invert(1);
}


.client-img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients-grid {
    justify-content: center;
    gap: 30px;
  }

  .client-img {
    height: 25px;
  }
}



.footer-links,
.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

.footer-links li,
.footer-contact-list li {
  margin-left: 0;
}

.bottom-cta-section {
  position: relative;
  padding: 140px 0 100px 0;
  text-align: center;
  background-image: url('../images/cta-image.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(23, 60, 122, 0.3) 0%,
      rgba(232, 93, 37, 0.5) 50%,
      #FFFFFF 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 40px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bottom-cta-section .btn-primary {
  box-shadow: 0 10px 30px rgba(232, 93, 37, 0.4);
}


@media (max-width: 992px) {
  .desktop-only-btn {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: linear-gradient(180deg, rgba(16, 42, 86, 0.98) 0%, rgba(10, 25, 48, 1) 100%);
  backdrop-filter: blur(20px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);

  z-index: 999;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mobile-menu-inner {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-link {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;

  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s forwards;
  animation-delay: calc(0.05s * var(--i));
  animation-play-state: paused;
}

.mobile-menu.open .mobile-link {
  animation-play-state: running;
}

.mobile-link:hover {
  color: var(--color-yellow);
  padding-left: 10px;
}

.mobile-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
  animation-delay: 0.4s;
  animation-play-state: paused;
}

.mobile-menu.open .mobile-divider {
  animation-play-state: running;
}

.quick-actions {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s forwards;
  animation-delay: 0.5s;
  animation-play-state: paused;
}

.mobile-menu.open .quick-actions {
  animation-play-state: running;
}

.quick-label {
  color: #8892b0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.action-btn:active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.98);
}

.action-btn .material-symbols-rounded {
  font-size: 1.2rem;
  color: var(--color-yellow);
}

.mobile-cta-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s forwards;
  animation-delay: 0.6s;
  animation-play-state: paused;
}

.mobile-menu.open .mobile-cta-wrapper {
  animation-play-state: running;
}

.btn-full-width {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px;
  font-size: 1.1rem;
  box-shadow: 0 10px 40px rgba(255, 182, 0, 0.25);
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


.footer-contact-list a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.footer-contact-list a:hover {
  color: var(--color-yellow);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}


.section-subtitle {
  color: var(--color-yellow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--color-yellow);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header p {
  color: #ccc;
  font-size: 1.1rem;
}

.about-section {
  background-color: var(--color-blue-dark);
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.about-text h2 {
  font-size: clamp(1rem, 2vw, 1.8rem);
  color: var(--color-white);
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
}

.about-text p {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-image {
  position: relative;
}

.img-rounded {
  width: 100%;
  border-radius: var(--border-radius-card);
  box-shadow: 20px 20px 0px rgba(255, 182, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.values-section {
  background-color: var(--color-blue-black);
  padding: 100px 0;
}

.philosophy-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.philosophy-wrapper h3 {
  color: var(--color-orange);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.philosophy-text {
  font-size: 1.3rem;
  font-style: italic;
  color: #eee;
  line-height: 1.6;
}

.values-title {
  text-align: center;
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 800;
}

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

.value-card {
  background: var(--color-blue-dark);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  text-align: left;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.05);
}

.v-icon span {
  font-size: 2.5rem;
  color: var(--color-yellow);
  margin-bottom: 15px;
}

.value-card h4 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.5;
}

.models-section {
  background-color: var(--color-blue);
  padding: 100px 0;
}

.models-intro {
  text-align: center;
  margin-bottom: 50px;
}

.models-intro h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.model-card {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
}

.model-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.model-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(16, 42, 86, 0.95), rgba(16, 42, 86, 0.2));
  z-index: 2;
}

.model-card:hover .model-bg {
  transform: scale(1.1);
}

.model-content {
  position: relative;
  z-index: 3;
  padding: 30px;
  width: 100%;
}

.model-content h3 {
  color: var(--color-yellow);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.model-content p {
  color: #eee;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.text-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.text-link:hover {
  color: var(--color-orange);
  gap: 10px;
}

@media (max-width: 768px) {
  .models-grid {
    grid-template-columns: 1fr;
  }

  .model-card {
    height: 300px;
  }
}

.quote-section {
  background-color: var(--color-blue-dark);
  padding: 100px 0;
  text-align: center;
  background-image: radial-gradient(circle at center, rgba(23, 60, 122, 0.3) 0%, transparent 70%);
}

.quote-box {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.quote-icon {
  font-size: 3rem;
  color: var(--color-orange);
  margin-bottom: 20px;
  display: block;
}

.quote-text {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.4;
  font-style: italic;
}

.easy-block {
  background: var(--color-white);
  color: var(--color-blue-dark);
  padding: 50px;
  border-radius: var(--border-radius-card);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.easy-block h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.easy-block p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.easy-block .btn-primary {
  background-color: var(--color-orange);
}

.easy-block .btn-primary:hover {
  background-color: #d14d1b;
}


.about-premium-section {
  position: relative;
  padding: 120px 0;
  background-color: #0F172A;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color-blue) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: 1;
}

.about-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.about-image-container {
  width: 65%;
  position: relative;
  border-radius: var(--border-radius-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-img-horizontal {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-card);
  filter: contrast(1.1) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industrial-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: var(--color-yellow);
  color: var(--color-blue-black);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
  border-radius: 12px;
}

.badge-num {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -1px;
}

.badge-txt {
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 800;
}

.about-content-card {
  width: 55%;
  margin-left: -10%;
  background-color: var(--color-blue-dark);
  padding: 50px;
  color: var(--color-white);
  border-radius: var(--border-radius-card);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border-top: 5px solid var(--color-orange);
  position: relative;
}

.section-label {
  color: var(--color-yellow);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

.about-content-card h2 {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.text-yellow {
  color: var(--color-yellow);
}

.lead-text {
  font-size: 1.1rem;
  color: var(--color-white);
  border-left: 3px solid var(--color-yellow);
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.body-text {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.features-row {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-yellow);
}

.feature-item span.material-symbols-rounded {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-image-container {
    width: 100%;
    margin-bottom: -30px;
  }

  .industrial-badge {
    left: 20px;
    bottom: 40px;
  }

  .about-content-card {
    width: 100%;
    margin-left: 0;
    padding: 40px 25px;
  }

  .about-content-card h2 {
    font-size: 2rem;
  }
}


.values-minimal-section {
  background-color: var(--color-blue-black);
  padding: 100px 0;
  text-align: center;
}

.philosophy-minimal {
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.minimal-label {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.philosophy-minimal h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
}

.text-highlight {
  color: var(--color-yellow);
  font-weight: 700;
}

.values-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
}

.value-card-round {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 40px 25px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card-round:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--color-yellow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--color-blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.value-card-round:hover .icon-circle {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-blue-black);
}

.icon-circle span {
  font-size: 2rem;
  color: var(--color-yellow);
  transition: 0.3s;
}

.value-card-round:hover .icon-circle span {
  color: var(--color-blue-black);
}

.value-card-round h4 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card-round p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .values-grid-minimal {
    gap: 20px;
  }
}

.values-grid-minimal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

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

@media (max-width: 600px) {
  .values-grid-minimal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 592px) {
  .hero-bg-image {
    background-image: url('../images/hero-image-mobile.jpeg') !important;
  }

  .cta-bg-layer {
    background-image: url('../images/cta-image-mobile.jpeg') !important;
  }
}


.about-minimal-section {
  background-color: #0F172A;
  padding: 120px 0;
  position: relative;
}

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

.about-visual-round {
  position: relative;
}

.img-soft {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
  filter: brightness(0.95);
}

.badge-soft {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--color-yellow);
  color: var(--color-blue-black);
  padding: 20px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 182, 0, 0.3);
  border: 4px solid #0F172A;
}

.b-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.b-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clean-label {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.about-content-clean h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 30px;
}

.text-yellow {
  color: var(--color-yellow);
}

.clean-lead {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.clean-body {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 40px;
  line-height: 1.7;
}

.features-minimal-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.feature-pill:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-yellow);
  transform: translateY(-3px);
}

.f-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-blue);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-icon span {
  font-size: 1.2rem;
}

.feature-pill span {
  color: #ccc;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .about-grid-clean {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual-round {
    order: 2;
    margin-bottom: 20px;
  }

  .badge-soft {
    right: 0;
    bottom: -20px;
  }

  .about-content-clean h2 {
    font-size: clamp(2rem, 2vw, 1.8rem);
  }
}


.quote-dark-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-blue-black);
  overflow: hidden;
  text-align: center;
}

.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(23, 60, 122, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.quote-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.quote-mark-bg {
  font-family: serif;
  font-size: 10rem;
  line-height: 0;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.quote-headline {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.action-card-dark {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;

  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 30px;
  padding: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  transition: transform 0.3s ease, border-color 0.3s ease;
}

.action-card-dark:hover {
  transform: translateY(-5px);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.action-text {
  text-align: left;
  flex: 1;
}

.action-text h3 {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-text p {
  color: #94A3B8;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.action-btn-wrapper {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .action-card-dark {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .action-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .quote-headline {
    font-size: 1.5rem;
  }
}


.cta-final-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background-color: #050d1a;
  text-align: center;
}

.cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/cta-image.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
  mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-label {
  color: var(--color-orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.cta-header h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-subtext {
  font-size: 1.2rem;
  color: #94A3B8;
  font-weight: 500;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.3rem;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(255, 182, 0, 0.3);
}

.btn-lg:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 50px rgba(255, 182, 0, 0.5);
}

.btn-lg .btn-icon {
  width: 28px;
}

@media (max-width: 768px) {
  .cta-final-section {
    padding: 100px 0;
  }

  .cta-header h2 {
    line-height: 1.1;
  }
}


.services-minimal-section {
  background-color: var(--color-blue-black);
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
}

.minimal-label {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.services-grid-minimal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-pill-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.service-pill-card:hover {
  transform: translateY(-15px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.s-icon {
  font-size: 4rem;
  color: var(--color-yellow);
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.service-pill-card:hover .s-icon {
  transform: scale(1.1) rotate(-5deg);
}

.s-content h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.s-content p {
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.s-arrow {
  margin-top: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.s-arrow span {
  color: var(--color-white);
  font-size: 1.5rem;
}

.service-pill-card:hover .s-arrow {
  background-color: var(--color-yellow);
  transform: rotate(-45deg);
}

.service-pill-card:hover .s-arrow span {
  color: var(--color-blue-black);
}

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

@media (max-width: 768px) {
  .services-grid-minimal {
    grid-template-columns: 1fr;
  }

  .service-pill-card {
    padding: 40px 20px;
  }
}


.models-minimal-section {
  background-color: #0A1930;
  padding: 100px 0;
}

.models-grid-round {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.model-round-card {
  position: relative;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.model-round-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.model-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.model-round-card:hover .model-img-layer {
  transform: scale(1.1);
}

.model-overlay-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(6, 17, 33, 0.95), rgba(6, 17, 33, 0.6) 60%, transparent);
  width: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.model-icon {
  background-color: var(--color-yellow);
  color: var(--color-blue-black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.model-overlay-content h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.model-overlay-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}


.stats-minimal-section {
  background-color: #0F172A;
  padding: 100px 0;
}

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

.big-stat-circle {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.big-stat-circle::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(255, 182, 0, 0.2);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  100% {
    transform: rotate(360deg);
  }
}

.huge-percent {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 182, 0, 0.2);
}

.stat-caption {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-white);
  margin-top: 10px;
}

.stats-pills-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-pill {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.stat-pill:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-yellow);
  transform: translateX(10px);
}

.sp-icon {
  color: var(--color-yellow);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.sp-text {
  color: #ddd;
  font-size: 1.1rem;
}

.sp-text strong {
  color: var(--color-white);
  font-weight: 800;
}

@media (max-width: 992px) {
  .models-grid-round {
    grid-template-columns: 1fr;
  }

  .stats-clean-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-pills-wrapper {
    align-items: center;
  }

  .stat-pill {
    width: 100%;
    justify-content: flex-start;
  }
}


.hero-minimal-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 17, 33, 0.6);
  z-index: 2;
}

.hero-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.hero-glass-card {
  max-width: 800px;
  width: 100%;
  background: rgba(16, 42, 86, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);

  opacity: 0;
  transform: translateY(30px);
  animation: cardFloatUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

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


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 182, 0, 0.15);
  color: var(--color-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 182, 0, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 182, 0, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 182, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 182, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 182, 0, 0);
  }
}

.hero-glass-card h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ddd;
  font-weight: 700;
  margin-bottom: 30px;
}

.text-yellow {
  color: var(--color-yellow);
}

.hero-divider {
  width: 60px;
  height: 4px;
  background-color: var(--color-orange);
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.hero-problem {
  font-size: 1.1rem;
  color: #94A3B8;
  font-style: italic;
  margin-bottom: 15px;
}

.hero-solution {
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrapper .btn-primary {
  padding: 16px 40px;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(255, 182, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-minimal-section {
    min-height: auto;
    padding: 120px 0 80px 0;
  }

  .hero-glass-card {
    padding: 40px 20px;
    border-radius: 30px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}


.premium-footer {
  background-color: #050d1a;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #94A3B8;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: var(--color-yellow);
  transition: 0.3s;
}

.social-btn:hover {
  background-color: var(--color-yellow);
  color: var(--color-blue-black);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

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

.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-circle {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.contact-circle .material-symbols-rounded {
  color: var(--color-yellow);
  font-size: 1.2rem;
}

.footer-contact-list li:hover .contact-circle {
  transform: scale(1.1);
  background-color: var(--color-yellow);
}

.footer-contact-list li:hover .contact-circle .material-symbols-rounded {
  color: var(--color-blue-black);
}

.contact-info a,
.contact-info span.no-link-text {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s ease;
  display: block;
}

.footer-contact-list li:hover .contact-info a {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  color: #94A3B8;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--color-yellow);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


.clients-marquee-section {
  background-color: var(--color-orange);
  padding: 35px 0;
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;

  animation: scrollElegant 40s linear infinite;
}

.clients-marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.client-img {
  height: 40px;
  width: auto;
  object-fit: contain;

  opacity: 0.8;
  transition: all 0.4s ease;

  filter: brightness(0) invert(1) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.client-img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

@keyframes scrollElegant {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.33%);
  }

}

@media (max-width: 768px) {
  .clients-marquee-section {
    padding: 25px 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-img {
    height: 30px;
  }

  .marquee-track {
    gap: 50px;
    animation-duration: 20s;
  }
}


.main-header {
  background-color: rgba(16, 42, 86, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}


.desktop-nav a {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.desktop-nav a::after {
  height: 2px;
  background: var(--color-yellow);
  transition: width 0.3s ease-out;
}

.logo-img {
  height: 38px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.desktop-only-btn {
  padding: 12px 25px;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 182, 0, 0.2);
  transition: all 0.4s ease;
}



body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: var(--color-blue-dark);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-color: var(--color-yellow);
  border-radius: 20px;
  border: 3px solid var(--color-blue-dark);
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background-color: #e85d25;
}


body,
html {
  scrollbar-color: var(--color-yellow) var(--color-blue-dark);
  scrollbar-width: thin;
}

/* ================= CONTACT FORM SECTION ================= */

.contact-form-section {
  padding: 100px 0;
  background-color: #08162b;
  /* Fondo oscuro profundo */
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  /* Formulario un poco más ancho */
  gap: 60px;
  align-items: stretch;
}

/* --- VISUAL CARD (IZQUIERDA) --- */
.visual-card {
  height: 100%;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.visual-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* Imagen de placeholder sugerida: Un técnico o una oficina moderna */
  background-color: #102A56;
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(6, 17, 33, 0.95), transparent);
}

.visual-overlay h3 {
  color: var(--color-yellow);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.visual-overlay p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* --- FORM CARD (DERECHA) --- */
.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  /* Vidrio oscuro */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 30px;
}

.form-label {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}

.form-header h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 900;
}

/* Estilos de Inputs */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 5px;
}

.form-group input,
.form-group textarea {
  background-color: rgba(6, 17, 33, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-yellow);
  background-color: rgba(6, 17, 33, 0.9);
  box-shadow: 0 0 15px rgba(255, 182, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

/* reCAPTCHA Mockup */
.recaptcha-placeholder {
  margin: 10px 0;
}

.mock-captcha {
  background-color: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  width: fit-content;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000;
}

.captcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
}

.captcha-logo {
  height: 30px;
  margin-left: 20px;
}

/* Botón de Enviar */
.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 18px;
  font-size: 1.1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-card {
    min-height: 250px;
    /* Más corto en móvil */
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    /* Una columna en inputs */
  }

  .contact-form-card {
    padding: 30px 20px;
  }
}

/* ================= CONTACT FORM STYLES ================= */

.contact-form-section {
  padding: 100px 0;
  background-color: #08162b;
  /* Fondo oscuro sólido para separar del footer */
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  /* Formulario más ancho */
  gap: 60px;
  align-items: stretch;
}

/* --- TARJETA VISUAL (IZQUIERDA) --- */
.visual-card {
  height: 100%;
  min-height: 500px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.visual-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  /* Oscurecer imagen para texto */
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(6, 17, 33, 0.95), transparent);
}

.visual-overlay h3 {
  color: var(--color-yellow);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.visual-overlay p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* --- TARJETA FORMULARIO (DERECHA) --- */
.contact-form-card {
  background: rgba(255, 255, 255, 0.02);
  /* Glass muy sutil */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-card);
  padding: 50px;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 30px;
}

.form-label {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}

.form-header h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 900;
}

/* Estilos de Inputs */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 5px;
}

.form-group input,
.form-group textarea {
  background-color: rgba(16, 42, 86, 0.3);
  /* Azul oscuro transparente */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

/* Estados Focus */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-yellow);
  background-color: rgba(16, 42, 86, 0.6);
  box-shadow: 0 0 15px rgba(255, 182, 0, 0.1);
}

/* Recaptcha Container */
.recaptcha-wrapper {
  margin: 10px 0;
  display: flex;
  justify-content: flex-start;
}

/* Botón de Enviar (Ancho completo) */
.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 18px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-card {
    min-height: 250px;
    order: -1;
    /* Poner imagen arriba */
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    /* Inputs apilados en móvil */
  }

  .contact-form-card {
    padding: 30px 20px;
  }
}

/* ================================================================
   NEW STYLES: HVAC DROPDOWN & REFACTORED STATS SECTION
   ================================================================ */

/* 1. DROPDOWN NAVIGATION (PREMIUM LOOK) */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);

  /* Industrial Glass Effect */
  background: rgba(10, 25, 48, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  min-width: 320px;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--color-orange);
  /* Acento de marca */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dd-item {
  display: block;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none !important;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dd-item:last-child {
  border-bottom: none;
}

.dd-item:hover {
  background-color: rgba(255, 182, 0, 0.1);
  /* Sutil amarillo */
}

.dd-title {
  display: block;
  font-weight: 800;
  color: var(--color-yellow);
  font-size: 0.95rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dd-desc {
  display: block;
  font-size: 0.75rem;
  color: #94A3B8;
  /* Color gris azulado del footer */
  line-height: 1.4;
  font-weight: 400;
  text-transform: none;
}

/* 2. REFACTORED STATS SECTION (INDUSTRIAL PREMIUM) */
.stats-minimal-section {
  background-color: var(--color-blue-dark);
  padding: 120px 0;
  position: relative;
}

.stats-text-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px auto;
}

.stats-text-wrapper h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.stats-text-wrapper p {
  font-size: 1.2rem;
  color: #94A3B8;
  line-height: 1.6;
  border-left: 3px solid var(--color-yellow);
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}

/* Ajuste de las Pills en Stats para que luzcan como el resto del sitio */
.stats-clean-layout .stat-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  /* Icono arriba para mejor look industrial */
  align-items: flex-start;
  gap: 15px;
  transition: var(--transition-smooth);
  height: 100%;
}

.stats-clean-layout .stat-pill:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stats-clean-layout .sp-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stats-clean-layout .sp-icon span {
  font-size: 2rem;
}

.stats-clean-layout .sp-text {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.stats-clean-layout .sp-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
  .stats-text-wrapper p {
    border-left: none;
    border-top: 3px solid var(--color-yellow);
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }

  .stats-clean-layout .stat-pill {
    max-width: 100% !important;
  }
}

/* =========================================
   NEW SECTION: INDUSTRIAL EXCELLENCE
   ========================================= */

.excellence-premium-section {
  background-color: #050C18;
  /* Azul casi negro */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Fondo Tecnológico Sutil */
.tech-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: -2;
}

/* Luz ambiental amarilla */
.glow-orb {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 182, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

/* --- HEADER LAYOUT --- */
.excellence-header {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* El "18" Gigante Estilo Outline */
.year-stamp-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.huge-stroke-text {
  font-size: 10rem;
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
  /* Efecto Outline */
  font-family: var(--font-main);
}

.years-label {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-yellow);
  background: #050C18;
  /* Mismo que el fondo para "cortar" el outline */
  padding: 5px 10px;
  transform: rotate(-10deg);
  border: 1px solid var(--color-yellow);
  box-shadow: 5px 5px 0px rgba(255, 182, 0, 0.2);
}

.header-text-content {
  max-width: 600px;
}

.section-tag {
  display: inline-block;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-orange);
  padding-bottom: 5px;
}

.header-text-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.header-text-content p {
  font-size: 1.15rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* --- MODULES GRID (CARDS) --- */
.modules-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tech-module-card {
  background: rgba(16, 42, 86, 0.3);
  /* Azul transparente */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

/* Barra superior amarilla animada */
.module-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--color-yellow);
  transition: width 0.4s ease;
}

.tech-module-card:hover {
  transform: translateY(-10px);
  background: rgba(16, 42, 86, 0.6);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.tech-module-card:hover .module-border-top {
  width: 100%;
}

.module-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--color-yellow);
  transition: 0.4s;
}

.module-icon span {
  font-size: 2rem;
}

.tech-module-card:hover .module-icon {
  background: var(--color-yellow);
  color: #050C18;
  border-color: var(--color-yellow);
  /* Giro sutil de 8 grados a la izquierda */
  transform: rotate(-8deg);
}

.tech-module-card:hover .module-icon span {
  transform: rotate(0deg);
}

.module-body h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-body p {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 0;
}

.module-body p strong {
  color: #fff;
  border-bottom: 1px dotted var(--color-orange);
}

/* Número de fondo sutil */
.module-number {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  font-family: sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .modules-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .excellence-header {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .huge-stroke-text {
    font-size: 8rem;
  }

  .header-text-content p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .modules-grid-3 {
    grid-template-columns: 1fr;
  }

  .huge-stroke-text {
    font-size: 6rem;
  }

  .tech-module-card {
    padding: 30px 20px;
  }
}

/* =======================================================
   EXCELLENCE SECTION: ROUNDED & RESPONSIVE FIX
   ======================================================= */

.excellence-premium-section {
  background-color: #050C18;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tech-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  z-index: -2;
}

.glow-orb {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 182, 0, 0.07) 0%, transparent 70%);
  z-index: -1;
}

/* --- FIX DEL "18" EN MÓVIL --- */
.excellence-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.year-stamp-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 180px;
  /* Asegura espacio en móvil */
}

.huge-stroke-text {
  font-size: clamp(6rem, 12vw, 10rem);
  /* Escala mejor según el ancho */
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
  font-family: var(--font-main);
}

.years-label {
  position: absolute;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-yellow);
  background: #050C18;
  padding: 8px 15px;
  transform: rotate(-10deg);
  border: 1px solid var(--color-yellow);
  border-radius: 12px;
  /* Redondeado */
  box-shadow: 4px 4px 0px rgba(255, 182, 0, 0.2);
  white-space: nowrap;
}

.header-text-content {
  max-width: 600px;
}

.section-tag {
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid var(--color-orange);
}

.header-text-content h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

/* --- CARDS CON BORDES REDONDEADOS --- */
.modules-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tech-module-card {
  background: rgba(16, 42, 86, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  /* BORDES REDONDEADOS */
  padding: 45px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  /* Importante para que el brillo interno respete el radius */
  height: 100%;
}

.module-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--color-yellow);
  transition: width 0.5s ease;
  z-index: 5;
}

.tech-module-card:hover {
  transform: translateY(-12px);
  background: rgba(16, 42, 86, 0.5);
  border-color: var(--color-yellow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.tech-module-card:hover .module-border-top {
  width: 100%;
}

.module-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  /* BORDES REDONDEADOS */
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--color-yellow);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.module-icon span {
  font-size: 2.2rem;
}

.tech-module-card:hover .module-icon {
  background: var(--color-yellow);
  color: #050C18;
  transform: rotate(10deg);
}

.module-body h3 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.module-body p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
}

.module-number {
  position: absolute;
  bottom: 15px;
  right: 25px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
  .modules-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .excellence-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .modules-grid-3 {
    grid-template-columns: 1fr;
  }

  .year-stamp-wrapper {
    min-width: 100%;
    margin-bottom: 10px;
  }

  .huge-stroke-text {
    font-size: 7rem;
    /* Tamaño controlado en móvil */
  }

  .years-label {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

/* =======================================================
   ULTRA-PRO DROPDOWN DESIGN (RIMSAMEX PREMIUM)
   ======================================================= */

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hvac-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chevron-icon {
  font-size: 1.2rem !important;
  transition: transform 0.3s ease;
  color: var(--color-yellow);
}

/* Dropdown Window */
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 20px);
  /* SEPARACIÓN DEL TOPBAR */
  left: 50%;
  transform: translateX(-50%) translateY(15px);

  min-width: 360px;
  padding: 12px;
  background: rgba(10, 25, 48, 0.95);
  /* Azul muy profundo */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Borde sutil, no arriba */
  border-radius: 24px;
  /* Bordes muy redondeados */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

/* PUENTE INVISIBLE: Evita que el menú se cierre al bajar el mouse */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

/* Hover Effects en el disparador */
.nav-item-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Individual Items */
.dd-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dd-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 182, 0, 0.2);
  transform: scale(1.02);
}

/* Iconos dentro del dropdown */
.dd-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(16, 42, 86, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.dd-item:hover .dd-icon-box {
  background: var(--color-yellow);
  color: var(--color-blue-dark);
}

/* Texto del dropdown */
.dd-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dd-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.dd-item:hover .dd-title {
  color: var(--color-yellow);
}

.dd-desc {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 992px) {
  .dropdown-menu {
    display: none;
    /* Se recomienda manejar el dropdown en móvil como lista vertical simple */
  }
}

/* --- LIMPIEZA DE LÍNEA ANIMADA EN DROPDOWN --- */

/* Eliminamos el pseudo-elemento que crea la línea para los items del dropdown */
.desktop-nav .dd-item::after {
  display: none !important;
  content: none !important;
}

/* Opcional: Si quieres que el enlace principal "HVAC" mantenga la línea
 pero que no se vea tan pegada al rotar el menu, puedes ajustar su posición */
.nav-item-dropdown>a::after {
  bottom: -2px;
  /* Ajuste sutil para el trigger principal */
}

/* --- RE-ESTILIZADO PRO DEL DROPDOWN (SIN BORDES AGRESIVOS) --- */
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(15px);

  min-width: 360px;
  padding: 12px;
  background: rgba(10, 25, 48, 0.98);
  /* Azul profundo premium */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Borde sutil perimetral */
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

/* Puente invisible para que no se cierre al bajar el mouse */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
  background: transparent;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  /* Para asegurar que no herede comportamientos raros */
}

.dd-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 182, 0, 0.2);
  transform: translateX(5px);
  /* Desplazamiento sutil en lugar de scale */
}

.dd-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.dd-item:hover .dd-title {
  color: var(--color-yellow);
}

.dd-desc {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.4;
  text-transform: none;
  /* Evita que herede el uppercase del nav */
}