/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
  /* Colors */
  --primary-color: #0CAE5B; /* Inovacon Green */
  --primary-light: #21D075;
  --secondary-color: #088C48; /* Darker Green */
  --accent-color: #2b2b2b;
  
  --text-color: #333333;
  --text-light: #666666;
  --title-color: #2b2b2b;
  
  --bg-color: #f8f9fa;
  --bg-light: #ffffff;
  --bg-dark: #121212;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-dark-bg: rgba(20, 20, 20, 0.8);
  
  /* Typography */
  --body-font: 'Inter', sans-serif;
  --title-font: 'Outfit', sans-serif;
  
  /* Margins & Paddings */
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  
  /* Z-Index */
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
  
  /* Box Shadow */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 1rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

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

/* =========================================
   REUSABLE CLASSES
========================================= */
.container {
  max-width: 1200px;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
  align-items: center;
}

.section {
  padding: 5rem 0 2rem;
}

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

.bg-light {
  background-color: var(--bg-light);
}

.mt-2 { margin-top: var(--mb-2); }
.mb-2 { margin-bottom: var(--mb-2); }
.mb-4 { margin-bottom: var(--mb-4); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--title-font);
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 4px 15px rgba(12, 174, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 174, 91, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}

/* Section Title Typography */
.section-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: var(--mb-1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--mb-2);
}

.section-description {
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: var(--mb-4);
}

.section-title-wrap.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   HEADER & NAVBAR
========================================= */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: var(--transition-fast);
  padding: 1.5rem 0;
}

.header.scroll-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
  display: block;
  max-width: 180px;
  transition: var(--transition-fast);
}

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

.nav-list {
  display: flex;
  column-gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

.nav-close, .nav-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  padding: 10rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(12, 174, 91, 0.15);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(8, 140, 72, 0.1);
  bottom: 0;
  left: -50px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(43, 43, 43, 0.05);
  top: 40%;
  left: 30%;
}

.hero-container {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.hero-data .subtitle {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(12, 174, 91, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: var(--mb-2);
  font-size: 0.875rem;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--mb-2);
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--mb-4);
  max-width: 500px;
}

.hero-reviews-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  /* Mask to fade out the top and bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-reviews-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* We will dynamically set animation duration depending on items or just keep it fixed */
  animation: scrollUp 20s linear infinite;
}

.hero-reviews-track:hover {
  animation-play-state: paused;
}

.hero-review-item {
  margin-bottom: 0; /* Override default if needed */
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); } 
}

/* =========================================
   FEATURES
========================================= */
.features-container {
  grid-template-columns: repeat(3, 1fr);
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}

.feature-card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--secondary-color);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(12, 174, 91, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.feature-card:hover .icon-box {
  background: var(--primary-color);
}

.feature-card i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.feature-card:hover i {
  color: #fff;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* =========================================
   ABOUT
========================================= */
.about-container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  padding-right: 2rem;
}

.about-img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  top: 30px;
  right: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem !important;
}

.experience-badge h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.about-description {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.about-list i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

/* =========================================
   TEAM SECTION (PARALLAX)
========================================= */
.team-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 3rem;
}

.team-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/team/inovacon-181.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.team-bg-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 15, 0.85); /* Escurece bastante para os cards destacarem */
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.text-white {
  color: #ffffff;
}

.text-white-light {
  color: #cccccc;
}

.team-container {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: transform var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.team-img-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* MVV Styles */
.mvv-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.08); /* Mais transparente para ressaltar o parallax */
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-normal), background var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mvv-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.mvv-icon {
  width: 70px;
  height: 70px;
  background: rgba(12, 174, 91, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mvv-icon i {
  font-size: 2.25rem;
  color: var(--primary-light);
}

.mvv-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mvv-card p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

/* Careers Footer Link */
.careers-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-light) !important;
  font-weight: 600;
  margin-top: 0.5rem;
}

.careers-link:hover {
  text-decoration: underline;
}

.team-info p {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   SERVICES
========================================= */
.services-container {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem;
  transition: var(--transition-normal);
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(12, 174, 91, 0.1);
  padding: 1rem;
  border-radius: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* =========================================
   VIDEO SECTION
========================================= */
.video-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-thumbnail-link {
  display: block;
  position: relative;
  cursor: pointer;
}

.video-thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.video-thumbnail-link:hover .video-thumbnail-img {
  transform: scale(1.03);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.video-thumbnail-link:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 12px rgba(12, 174, 91, 0.25);
}

.video-thumbnail-link:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 18px rgba(12, 174, 91, 0.2);
}

.video-play-btn i {
  font-size: 2.5rem;
  color: #fff;
  margin-left: 5px; /* visually center the play icon */
}

.video-cta-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* =========================================
   CLIENTS (MARQUEE)
========================================= */
.clients {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.clients-wrapper {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  /* Mask to fade edges */
  -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);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

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

.client-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition-normal);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1.5rem)); }
}

/* =========================================
   SEGMENTS (QUEM ATENDEMOS)
========================================= */
.segments-container {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.segment-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.segment-card:hover::before {
  transform: scaleX(1);
}

.segment-icon {
  width: 50px;
  height: 50px;
  background: rgba(12, 174, 91, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.segment-icon i {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

.segment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.segment-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.segment-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.segment-link i {
  transition: transform var(--transition-fast);
}

.segment-link:hover i {
  transform: translateX(5px);
}

/* =========================================
   TESTIMONIALS (GOOGLE REVIEWS)
========================================= */
.testimonials-container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.google-review-card {
  position: relative;
  background: var(--bg-light);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.stars {
  color: #fbbc05; /* Google Star Yellow */
  font-size: 1.25rem;
}

.google-icon {
  font-size: 2rem;
  color: #4285F4; /* Google Logo Blue */
  opacity: 0.8;
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* =========================================
   FAQ
========================================= */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--title-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-header i {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.accordion-header.active i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #fafafa;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* =========================================
   CTA
========================================= */
.cta-container {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(12,174,91,0.05), rgba(8,140,72,0.1));
  border: 1px solid rgba(12, 174, 91, 0.2);
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-container p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.cta-btn i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: var(--title-color);
  color: #fff;
  padding-top: 4rem;
}

.footer-container {
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  max-width: 220px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #aaa;
  margin-bottom: 2rem;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links li, .footer-contact li {
  margin-bottom: 1rem;
}

.footer-links a, .footer-contact li {
  color: #aaa;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 0.5rem;
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  background-color: #111;
}

.footer-bottom-container {
  justify-content: space-between;
  color: #888;
  font-size: 0.9rem;
}

.footer-legal a {
  margin-left: 1.5rem;
  color: #888;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: #fff;
}

/* =========================================
   IR PROMO BANNER (2026)
========================================= */
.ir-promo-banner-section {
  padding: 4rem 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.ir-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(8, 140, 72, 0.8), rgba(12, 174, 91, 0.9));
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(12, 174, 91, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ir-promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(247, 195, 37, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.ir-promo-img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  position: relative;
  z-index: 2;
  filter: contrast(1.1) brightness(0.95);
}

.ir-promo-content {
  width: 55%;
  padding: 3rem 4rem 3rem 1rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 968px) {
  .ir-promo-card {
    flex-direction: column;
    padding: 2rem;
  }
  
  .ir-promo-img {
    width: 80%;
    height: auto;
    clip-path: none;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
  }
  
  .ir-promo-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  
  .ir-promo-content p {
    margin: 0 auto 2rem;
  }
}

@media screen and (max-width: 576px) {
  .ir-promo-content h2 {
    font-size: 1.75rem !important;
  }
  .ir-promo-img {
    width: 100%;
  }
}

/* =========================================
   ANIMATIONS UTILS (SCROLL REVEAL)
========================================= */
.reveal {
  opacity: 0;
  transition: var(--transition-normal);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-bottom {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

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

/* =========================================
   MEDIA QUERIES
========================================= */
@media screen and (max-width: 992px) {
  .hero-container, 
  .about-container, 
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    box-shadow: var(--shadow-md);
    z-index: 100;
    /* No transition by default to prevent menu from animating on page load */
    visibility: hidden;
    transition: none;
  }

  .nav-menu.show-menu {
    top: 0;
    visibility: visible;
    transition: top var(--transition-normal);
  }

  /* Add transition for closing animation */
  .nav-menu.menu-closing {
    visibility: visible;
    transition: top var(--transition-normal);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  
  .nav-cta {
    display: none; /* Hide on very small screens or move into menu */
  }

  .nav-close, .nav-toggle {
    display: block;
  }

  .nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .hero {
    padding-top: 8rem;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-container,
  .team-container,
  .mvv-container,
  .segments-container,
  .services-container {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
