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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow-x: hidden;
}

.letdem-logo {
  background: linear-gradient(135deg, #ffffff, #4a9eff);
  background-clip: border-box;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: #4a9eff;
}

.language-switcher {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switcher .flag {
  font-size: 1.5rem;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  min-width: 160px;
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #ccc;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: rgba(74, 158, 255, 0.1);
  color: #4a9eff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  text-align: left;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.main-hero h1.hero-title{
background: linear-gradient(135deg, #ffffff, #4a9eff);
    background-clip: border-box;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.main-hero .hero-content{
  margin-bottom: 1rem !important;
}

.hero-title sup {
  font-size: 2rem;
  vertical-align: super;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
  /* margin-left: auto !important; */
}

.main-hero .hero-subtitle {
  margin-left: auto !important;
}

.hero-description {
  font-size: 1rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Waves Animation */
.waves-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#wavesCanvas {
  width: 100%;
  height: 100%;
}

/* Client Logos */
.client-logos {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 3rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem 2rem;
  justify-items: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 0;
  justify-content: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item i {
  font-size: 1.4rem;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trust Section */
.trust-section {
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
  text-align: left;
}

.trust-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}

.trust-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.services-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.services-description {
  font-size: 1rem;
  color: #999;
  line-height: 1.6;
  max-width: 800px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.services-grid .service-card {
  padding: 1.5rem 0;
  border-left: 1px solid #333;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-icon {
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: #4a9eff;
}

.service-description {
  font-size: 1rem;
  color: #999;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Featured Cards Section */
.featured-cards {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featured-card {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.featured-card  .card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: none !important;
}

.featured-card  .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.6;
}

.featured-card  .card-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.featured-card  .card-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.featured-card  .card-button:hover {
  background: rgba(74, 158, 255, 0.1);
  border-color: #4a9eff;
  color: #4a9eff;
  transform: translateY(-2px);
}

.featured-card  .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-card .card-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 300px;
}

/* Philosophy Section */
.philosophy {
  padding: 8rem 2rem;
  background: #f8f9fa;
  color: #333;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-header {
  margin-bottom: 4rem;
}

.philosophy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.philosophy-subtitle {
  font-size: 1.5em;
  font-weight: 400;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.philosophy-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
}

.philosophy-intro strong {
  color: #000;
  font-weight: 600;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.philosophy-features {
  padding-left: 2rem;
}

.features-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.feature-intro {
  margin-bottom: 2rem;
}

.feature-intro p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.feature-intro strong {
  color: #000;
  font-weight: 600;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-item::before {
  content: "•";
  color: #4a9eff;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-item strong {
  color: #000;
  font-weight: 600;
}

/* Global Presence Section */
.global-presence {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
  color: white;
}

.global-presence-container {
  max-width: 1200px;
  margin: 0 auto;
}

.global-presence-header {
  text-align: center;
  margin-bottom: 4rem;
}

.global-presence-label {
  color: #4a9eff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.global-presence-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #4a9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global-presence-content {
  display: grid;
  gap: 4rem;
}

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

.expertise-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(74, 158, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 158, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a9eff, #0066cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.expertise-icon i {
  font-size: 1.5rem;
  color: white;
}

.expertise-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.expertise-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(74, 158, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a9eff;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 2rem;
  background: #000;
  color: white;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-label {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-family: monospace;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: white;
  margin: 0;
}

.testimonials-carousel {
  position: relative;
}

.carousel-container {
  position: relative;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 50%, #0f2027 100%);
  border-radius: 20px;
  padding: 3rem;
  min-height: 400px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide.prev {
  transform: translateX(-100%);
}

.testimonial-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: white;
  margin: 4rem 0 2rem 0;
  font-weight: 300;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.carousel-counter {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
  letter-spacing: 1px;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

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

.carousel-btn:active {
  transform: translateY(0);
}

.carousel-btn i {
  font-size: 0.8rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 3rem;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .hero-title sup {
    font-size: 1.4rem;
  }

  .main-hero .hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }

  .hero-subtitle{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

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

  .trust-title {
    font-size: 1rem;
  }

  .trust-description {
    font-size: 0.9rem;
  }

  .logos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    max-width: 500px;
    padding: 1.5rem 0;
  }

  .logo-item {
    font-size: 0.9rem;
  }

  .logo-item i {
    font-size: 1.2rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .nav-menu {
    gap: 1rem;
  }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }


  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-features {
    padding-left: 0;
  }

  .carousel-container {
    padding: 2rem;
    min-height: 350px;
  }

  .testimonial-text {
    font-size: 1.2rem;
    margin: 3rem 0 1.5rem 0;
  }

  .carousel-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .carousel-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
    min-height: 80vh;
  }

  .hero-content {
    margin-bottom: 1.5rem;
  }

  .hero-title sup {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .trust-title {
    font-size: 0.95rem;
  }

  .trust-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .services-title {
    font-size: 2rem;
  }

  .services {
    padding: 4rem 1rem;
  }

  .logos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.5rem;
    max-width: 350px;
    padding: 1rem 0;
  }

  .logo-item {
    font-size: 0.8rem;
  }

  .logo-item i {
    font-size: 1.1rem;
  }

  .featured-cards {
    padding: 4rem 1rem;
  }

  .featured-card {
    padding: 1.5rem;
  }

  .philosophy {
    padding: 4rem 1rem;
  }

  .philosophy-intro {
    font-size: 1rem;
  }

  .global-presence-title {
    font-size: 2.5rem;
  }

  .expertise-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .testimonials {
    padding: 4rem 1rem;
  }

  .carousel-container {
    padding: 1.5rem;
    min-height: 300px;
  }

  .testimonial-text {
    font-size: 1.1rem;
    margin: 2.5rem 0 1rem 0;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .global-presence {
    padding: 4rem 1rem;
  }

  .global-presence-title {
    font-size: 2rem;
  }

  .expertise-card {
    padding: 1.5rem;
  }

  .global-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Footer */
.footer {
  position: relative;
  background: #000;
  color: white;
  padding: 4rem 2rem 2rem;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-graphics {
  position: relative;
  width: 100%;
  height: 100%;
}

.graphic-element {
  position: absolute;
  opacity: 0.3;
}

.circle-1 {
  width: 80px;
  height: 80px;
  border: 2px solid #333;
  border-radius: 50%;
  top: 20%;
  left: 10%;
}

.circle-2 {
  width: 60px;
  height: 60px;
  border: 2px solid #444;
  border-radius: 50%;
  top: 60%;
  right: 15%;
}

.circle-3 {
  width: 40px;
  height: 40px;
  border: 2px solid #555;
  border-radius: 50%;
  top: 30%;
  right: 30%;
}

.line-1 {
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #333, transparent);
  top: 40%;
  left: 20%;
  transform: rotate(45deg);
}

.line-2 {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #444, transparent);
  top: 70%;
  left: 60%;
  transform: rotate(-30deg);
}

.line-3 {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #555, transparent);
  top: 20%;
  right: 20%;
  transform: rotate(60deg);
}

.rect-1 {
  width: 60px;
  height: 40px;
  border: 2px solid #333;
  top: 50%;
  left: 5%;
  transform: rotate(15deg);
}

.rect-2 {
  width: 40px;
  height: 30px;
  border: 2px solid #444;
  top: 25%;
  left: 50%;
  transform: rotate(-20deg);
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

#google_translate_element2 {
  display: none;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-gadget {
  display: none !important;
}

body {
  top: 0 !important;
}

.footer-social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link i {
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-link:hover i {
  opacity: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-tagline {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-copyright p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-family: monospace;
  letter-spacing: 0.5px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section-title {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0;
}

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

.footer-nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.footer-nav-link:hover {
  color: white;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .testimonials-title br{
    display: none !important;
  }

  .footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-social {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 3rem;
  }

  .social-link {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .graphic-element {
    opacity: 0.2;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    width: 50px;
    height: 50px;
  }

  .line-1,
  .line-2,
  .line-3 {
    width: 80px;
  }

  .rect-1,
  .rect-2 {
    width: 40px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-social {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .social-link {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-copyright p {
    font-size: 0.8rem;
  }

  .footer-nav-link {
    font-size: 0.95rem;
  }
}


/* Contact Page Styles */
.contact-main {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #0a0f0d 0%, #1e3a2e 50%, #0f172a 100%);
  color: white;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.contact-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form */
.contact-form-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.form-input {
  padding: 1rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input:focus {
  outline: none;
  border-color: #4a9eff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Form Messages */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-submit-btn {
  background: #333;
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.form-input-error-message {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.25rem;
  display: block;
}

/* Contact Info Card */
.contact-info-card {
  position: relative;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  overflow: hidden;
  min-height: 500px;
}

.contact-info-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.info-graphic-element {
  position: absolute;
  opacity: 0.3;
}

.info-circle-1 {
  width: 200px;
  height: 200px;
  border: 2px solid #444;
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
}

.info-circle-2 {
  width: 100px;
  height: 100px;
  border: 2px solid #555;
  border-radius: 50%;
  top: 20%;
  right: 20%;
}

.info-dots-pattern {
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #444 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 20%;
  right: 10%;
  border-radius: 50%;
}

.contact-info-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 1rem;
  color: #ccc;
  font-weight: 500;
  margin: 0;
}

.info-value {
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.maps-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 2px solid #ff6b35;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.maps-link:hover {
  color: #ff6b35;
}

.maps-link i {
  font-size: 0.9rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 1.2rem;
}

/* Navigation Active State */
.nav-link.active {
  color: #4a9eff;
}

/* Data IA Page Styles */
.data-ia-main {
  padding-top: 4rem;
}

/* Section 1: Hero */
.data-ia-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #1a0033 0%, #2d1b69 50%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.data-ia-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-header {
  text-align: left;
  margin-bottom: 4rem;
  position: relative;
}

.hero-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 200px;
}

.hero-icons i {
  font-size: 1.5rem;
  color: #4a9eff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hero-icons i:hover {
  opacity: 1;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 70%;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
}

.hero-card .card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Automation Card */
.automation-card .card-background {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #f4a460 100%);
}

.automation-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.icon-item {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-item i {
  font-size: 1.5rem;
  color: white;
}

.connection-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
}

.connection-line::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(255, 255, 255, 0.6);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Solutions Card */
.solutions-card .card-background {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.solutions-graphics {
  position: relative;
  width: 100%;
  height: 100%;
}

.graphic-dots {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #ccc 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.5;
}

.graphic-connections {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 150px;
  height: 80px;
  border: 2px dashed #ccc;
  border-radius: 50%;
  opacity: 0.3;
}

.user-icons {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.user-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.user-icon.small {
  width: 35px;
  height: 35px;
}

.user-icon i {
  font-size: 1.2rem;
  color: #666;
}

.user-icon.small i {
  font-size: 1rem;
}

/* Section 2: Why AI */
.why-ai-section {
  padding: 6rem 2rem;
  background: #000;
  color: white;
}

.why-ai-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.why-ai-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: white;
}

.why-ai-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-left: 2px solid #333;
  padding-left: 1rem;
  transition: border-color 0.3s ease;
}

.benefit-item:hover {
  border-color: #4a9eff;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.2rem;
  color: #4a9eff;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.5;
}

/* Neural Network */
.why-ai-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.neural-network {
  width: 100%;
  max-width: 400px;
}

.network-svg {
  width: 100%;
  height: auto;
}

/* Strategy Section */
.strategy-section {
  border-top: 1px solid #333;
  padding-top: 3rem;
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.strategy-title {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
}

.strategy-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #333;
}

.feature-label {
  font-size: 0.95rem;
  color: #ccc;
}

.feature-value {
  font-size: 0.9rem;
  color: #999;
}

.optimize-section {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.optimize-icon {
  width: 50px;
  height: 50px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.optimize-icon i {
  font-size: 1.3rem;
  color: #4a9eff;
}

.optimize-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.optimize-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* Section 3: Testimonials */
.data-ia-testimonials {
  padding: 8rem 2rem;
  background: #000;
  color: white;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fintech Page Styles */
.fintech-main {
  padding-top: 4rem;
}

/* Section 1: Fintech Hero */
.fintech-hero {
  padding: 8rem 2rem 4rem;
  background: #000;
  color: white;
}

.fintech-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fintech-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
}

/* Chart Section */
.chart-section {
  margin-bottom: 4rem;
}

.chart-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.growth-chart {
  width: 100%;
  height: auto;
}

.chart-bars rect {
  transition: all 0.8s ease-out;
}

.trend-line polyline {
  filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.5));
}

.trend-line circle {
  transition: all 0.4s ease-out;
  filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.8));
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-left: 2px solid #333;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #4a9eff;
  transform: translateX(5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.3rem;
  color: #4a9eff;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 1.3;
}

/* Section 2: Benefits */
.fintech-benefits {
  padding: 6rem 2rem;
  background: #000;
  color: white;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}


.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.column-title {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.column-subtitle {
  font-size: 1rem;
  color: #999;
  margin: 0;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  transition: all 0.3s ease;
  padding-left: 30px;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.1rem;
  color: #4a9eff;
}

.benefit-text {
  font-size: 1rem;
  color: white;
  font-weight: 500;
}

/* Section 3: Testimonials */
.fintech-testimonials {
  padding: 8rem 2rem;
  background: #000;
  color: white;
}

/* Cybersecurity Page Styles */
.cybersecurity-main {
  padding-top: 4rem;
}

/* Section 1: Cybersecurity Hero */
.cybersecurity-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #001122 0%, #003366 50%, #004488 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cybersecurity-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cybersecurity-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #00ccff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-text {
  font-size: 1rem;
  color: white;
  font-weight: 500;
  margin: 0;
}

.trust-description {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Security Shield */
.security-shield {
  position: relative;
  width: 400px;
  height: 400px;
}

.shield-svg {
  width: 100%;
  height: 100%;
}

.client-logos-shield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.client-logos-shield .logo-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 204, 255, 0.3);
  transition: all 0.3s ease;
}

.client-logos-shield .logo-item:hover {
  background: rgba(0, 204, 255, 0.1);
  border-color: #00ccff;
  transform: scale(1.05);
}

.logo-top-left {
  top: 15%;
  left: -5%;
}

.logo-top-right {
  top: 15%;
  right: -5%;
}

.logo-bottom-left {
  bottom: 15%;
  left: -5%;
}

.logo-bottom-right {
  bottom: 15%;
  right: -5%;
}

.client-logos-shield .logo-item i {
  font-size: 1rem;
  color: #00ccff;
}

/* Services Section */
.services-section {
  margin-top: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.service-block {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
}

.service-block:hover {
  background: rgba(0, 255, 136, 0.05);
  border-color: #00ff88;
  transform: translateY(-5px);
}


.service-button {
  background: #0066ff;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.service-button:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.service-button .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
}

/* Section 2: Risk Assessment */
.risk-assessment {
  padding: 6rem 2rem;
  background: #000;
  color: white;
}

.risk-assessment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.assessment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.assessment-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.assessment-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  min-height: 400px;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.assessment-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.assessment-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.assessment-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.assessment-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

.assessment-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.assessment-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 30px;
}

.benefit-check {
  width: 24px;
  height: 24px;
  background: #00ccff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check i {
  font-size: 0.8rem;
  color: white;
}

.benefit-text {
  font-size: 1rem;
  color: white;
  line-height: 1.5;
  font-weight: 500;
}

.assessment-button {
  background: linear-gradient(135deg, #00ccff 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
}

.assessment-button:hover {
  background: linear-gradient(135deg, #0099cc 0%, #007799 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 204, 255, 0.4);
}

/* Monitoring Section Styles */
.monitoring-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 8rem;
}

.monitoring-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  order: 1;
}

.monitoring-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  order: 2;
}

.monitoring-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  min-height: 400px;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.monitoring-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.monitoring-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.monitoring-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.monitoring-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.monitoring-button {
  background: linear-gradient(135deg, #00ccff 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
}

.monitoring-button:hover {
  background: linear-gradient(135deg, #0099cc 0%, #007799 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 204, 255, 0.4);
}

/* Responsive adjustments for monitoring section */
@media (max-width: 768px) {
  .monitoring-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 6rem;
  }

  .monitoring-text {
    order: 2;
  }

  .monitoring-image {
    order: 1;
  }

  .monitoring-title {
    font-size: 2rem;
  }

  .monitoring-image img {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .monitoring-content {
    margin-top: 4rem;
  }

  .monitoring-title {
    font-size: 1.8rem;
  }

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

  .monitoring-image img {
    min-height: 250px;
  }

  .monitoring-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Development Hero Redesign */
.development-main {
  padding-top: 4rem;
}

.development-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #000814 0%, #001d3d 50%, #003566 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.development-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Background Effects */
.hero-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.digital-circle-large {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 3px solid rgba(0, 150, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.1) 0%, transparent 70%);
  animation: digitalRotate 20s linear infinite;
}

.digital-circle-large::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 100, 100, 0.2);
  border-radius: 50%;
  animation: digitalRotate 15s linear infinite reverse;
}

.digital-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 100, 100, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: lineMove 30s linear infinite;
}

.floating-numbers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-numbers span {
  position: absolute;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 150, 255, 0.2);
  font-family: "Courier New", monospace;
  animation: float 6s ease-in-out infinite;
}

.number-1 {
  top: 30%;
  left: 15%;
  animation-delay: 0s;
}

.number-2 {
  top: 60%;
  left: 25%;
  animation-delay: 2s;
}

.number-3 {
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

.tech-grid {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(rgba(255, 100, 100, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 100, 100, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  animation: gridPulse 4s ease-in-out infinite;
}

/* Main Content */
.hero-main-content {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 3;
}

.hero-header {
  margin-bottom: 4rem;
}

.development-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.development-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  align-items: flex-start;
}

.hero-benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  width: 100%;
}

.hero-benefits-list .benefit-check {
  width: 24px;
  height: 24px;
  background: #0096ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

.hero-benefits-list .benefit-check i {
  font-size: 0.8rem;
  color: white;
}

.hero-benefits-list .benefit-text {
  font-size: 1.1rem;
  color: white;
  line-height: 1.5;
  font-weight: 500;
}

/* Bottom Services Section */
.hero-services-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 3;
}

.service-block-bottom {
  text-align: left;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(0, 150, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-block-bottom:hover {
  background: rgba(0, 150, 255, 0.05);
  border-color: #0096ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.2);
}

.service-icon-bottom {
  width: 50px;
  height: 50px;
  background: rgba(0, 150, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-bottom i {
  font-size: 1.3rem;
  color: #0096ff;
}

.service-title-bottom {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description-bottom {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Key Services Redesign */
.key-services-redesign {
  padding: 8rem 2rem;
  background: #000;
  color: white;
}

.key-services-redesign-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header-redesign {
  margin-bottom: 4rem;
}

.services-title-redesign {
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-description-redesign {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
}

.services-grid-redesign {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  height: 800px;
}

.service-card-redesign {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-redesign:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 100, 255, 0.2);
  border-color: rgba(0, 100, 255, 0.3);
}

.large-card {
  grid-row: span 1;
}

.medium-card {
  grid-row: span 1;
}

.service-image-redesign {
  height: 60%;
  overflow: hidden;
  position: relative;
}

.service-image-redesign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.9) contrast(1.1);
}

.service-card-redesign:hover .service-image-redesign img {
  transform: scale(1.05);
}

.service-content-redesign {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  justify-content: space-between;
}

.service-title-redesign {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.service-description-redesign {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.service-button-redesign {
  background: #0066ff;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.service-button-redesign:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.service-button-redesign .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
}

/* Why AI Redesign Styles */
.why-ai-redesign {
  padding: 8rem 2rem;
  background: #000;
  color: white;
}

.why-ai-redesign-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Benefits Top Section */
.benefits-top-section {
  margin-bottom: 8rem;
}

.benefits-header {
  margin-bottom: 4rem;
}

.benefits-main-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.3;
  max-width: 65% !important;
}

.benefits-main-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  max-width: 600px;
}

.benefits-grid-redesign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.benefit-card-redesign {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  border-left: 2px solid #264f8b;
  padding-left: 30px;
}

.benefit-icon-redesign {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.benefit-icon-redesign i {
  font-size: 1.2rem;
  color: #ccc;
}

.benefit-title-redesign {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.benefit-description-redesign {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

/* Governance Section */
.governance-section {
  border-top: 1px solid #333;
  padding-top: 4rem;
}

.governance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.governance-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.governance-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.governance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0;
}

.feature-label-highlight {
  font-size: 1rem;
  color: #4a9eff;
  font-weight: 500;
}

.feature-value-highlight {
  font-size: 1rem;
  color: white;
  font-weight: 500;
}

.feature-label-single {
  font-size: 1rem;
  color: #4a9eff;
  font-weight: 500;
}

.innovation-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.innovation-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innovation-icon i {
  font-size: 1.2rem;
  color: #4a9eff;
}

.innovation-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.innovation-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.governance-right {
  display: flex;
  justify-content: center;
  line-height: 1.6;
  margin: 0;
}

.governance-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.governance-illustration {
  width: 100%;
  max-width: 400px;
}

.governance-illustration img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Animations */
@keyframes digitalRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lineMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, -50px 50px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.4;
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Why AI Redesign */
@media (max-width: 768px) {
  .why-ai-redesign {
    padding: 6rem 1rem;
  }

  .governance-title {
    font-size: 2rem;
  }

  .benefits-grid-redesign {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .governance-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .benefits-top-section {
    margin-bottom: 6rem;
  }
}

@media (max-width: 480px) {
  .why-ai-redesign {
    padding: 4rem 1rem;
  }


  .governance-title {
    font-size: 1.8rem;
  }

  .benefits-header {
    margin-bottom: 3rem;
  }

  .governance-left {
    gap: 2rem;
  }

  .innovation-section {
    padding: 1.5rem;
  }

  .feature-item-simple {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Governance Carousel Styles */
.governance-carousel-section {
  border-top: 1px solid #333;
  padding-top: 4rem;
}

.governance-carousel-container {
  position: relative;
  overflow: hidden;
}

.governance-carousel-track {
  position: relative;
  width: 100%;
  height: 600px;
}

.governance-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease-in-out;
}

.governance-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.governance-slide.prev {
  transform: translateX(-100%);
}

.governance-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  height: 100%;
}

.governance-slide-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.governance-slide-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.governance-slide-features {
  color: #999;
  font-size: 1em;
  line-height: 1.6;
}

.governance-slide-features b {
  color: white;
}

.governance-slide-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 1.2rem;
  color: #4a9eff;
}

.highlight-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.highlight-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.governance-slide-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.governance-slide-illustration {
  width: 100%;
  max-width: 600px;
}

.governance-slide-illustration img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}


.data-ia-hero .hero-card{
  padding: 0 !important;
}

/* Responsive Design for Governance Carousel */
@media (max-width: 768px) {
  .governance-carousel-track {
    height: auto;
    min-height: 500px;
  }

  .governance-slide-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 0;
  }


  .governance-slide-left {
    gap: 2rem;
  }

  .governance-slide-highlight {
    padding: 1.5rem;
  }

  .monitoring-button{
    margin: auto !important;
  }
}

@media (max-width: 480px) {
  .governance-carousel-track {
    min-height: 450px;
  }


  .governance-slide-left {
    gap: 1.5rem;
  }

  .governance-slide-highlight {
    padding: 1rem;
  }

  .highlight-title {
    font-size: 1.1rem;
  }

  .highlight-description {
    font-size: 0.9rem;
  }
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
  .contact-title {
    font-size: 3rem;
  }

  .contact-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 6rem 1rem 4rem;
  }

  .contact-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-section {
    order: 1;
  }

  .contact-info-card {
    order: 2;
    min-height: 400px;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .form-input {
    padding: 0.9rem 1rem;
  }

  .form-submit-btn {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-main {
    padding: 5rem 0.5rem 3rem;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .contact-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .contact-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-content {
    gap: 2rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .contact-form {
    gap: 1.2rem;
  }

  .form-input {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-submit-btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .contact-info-card {
    padding: 2rem;
    min-height: 350px;
  }

  .info-label {
    font-size: 0.9rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .contact-social {
    justify-content: center;
    gap: 0.8rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon i {
    font-size: 1rem;
  }
}

/* Data e IA Page Responsive Design */
@media (max-width: 1024px) {
  .data-ia-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-main-title {
    font-size: 3rem;
    max-width: 80%;
    padding-right: 30px;
  }

  .hero-content-grid {
    gap: 2rem;
  }

  .governance-carousel-track {
    height: 550px;
  }

  .data-ia-hero .hero-card{
    height: 490px !important;
  }

  .governance-slide-title br{
    display: none !important;
  }
}

@media (max-width: 768px) {
  .data-ia-hero {
    padding: 3rem 1rem 3rem;
  }

  .hero-header {
    margin-bottom: 3rem;
  }

  .hero-icons {
    position: static;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-main-title {
    font-size: 2.5rem;
    max-width: 100%;
    text-align: center;
  }


  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-card {
    min-height: 400px;
  }

  /* Why AI Section Responsive */
  .why-ai-redesign {
    padding: 6rem 1rem;
  }

  .benefits-top-section {
    margin-bottom: 6rem;
  }

  .benefits-main-title {
    text-align: center;
    max-width: none !important;
  }

  .benefits-main-description {
    text-align: center;
    margin: 0 auto;
  }

  .benefits-grid-redesign {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .benefit-card-redesign {
    text-align: center;
    border-left: none !important;
    padding-left: none !important;
  }

  /* Governance Carousel Responsive */
  .governance-carousel-track {
    height: auto;
    min-height: 500px;
  }

  .governance-slide-content {
    flex-direction: column;
    gap: 2rem;
  }

  .governance-slide-left,
  .governance-slide-right {
    width: 100%;
  }

  .governance-slide-title {
    text-align: center;
  }

  .governance-slide-features {
    text-align: center;
  }

  .highlight-header {
    justify-content: center;
  }

  .governance-slide-illustration {
    display: none !important;
  }

  /* Testimonials Responsive */
  .data-ia-testimonials {
    padding: 4rem 1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .data-ia-hero .hero-card{
    height: 400px !important;
  }
}

@media (max-width: 480px) {
  .data-ia-hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-icons {
    gap: 0.8rem;
  }

  .hero-icons i {
    font-size: 1.2rem;
  }

  .hero-main-title {
    font-size: 2rem;
    line-height: 1.2;
  }


  .hero-card {
    padding: 1.5rem;
    min-height: 350px;
  }

  /* Why AI Section Mobile */
  .why-ai-redesign {
    padding: 4rem 0.5rem;
  }

  .benefits-header {
    margin-bottom: 3rem;
  }

  .benefits-main-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .benefits-top-section {
    margin-bottom: 4rem;
  }

  .benefits-grid-redesign {
    gap: 1.5rem;
  }

  .benefit-card-redesign {
    padding: 1.5rem;
  }

  .benefit-title-redesign {
    font-size: 1rem;
  }

  .benefit-description-redesign {
    font-size: 0.85rem;
  }

  /* Governance Carousel Mobile */
  .governance-carousel-section {
    padding-top: 3rem;
  }

  .governance-carousel-track {
    min-height: 600px;
  }

  .governance-slide-content {
    padding: 1rem;
    gap: 1.5rem;
  }


  .governance-slide-features {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .highlight-title {
    font-size: 1rem;
  }

  .highlight-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .governance-slide-illustration img {
    max-width: 100%;
    height: auto;
  }

  /* Testimonials Mobile */
  .data-ia-testimonials {
    padding: 3rem 0.5rem;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-label {
    font-size: 0.8rem;
  }

  .testimonial-slide {
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.5rem 0;
  }

  .testimonial-author h4 {
    font-size: 1rem;
  }

  .testimonial-author p {
    font-size: 0.85rem;
  }

  .carousel-controls {
    margin-top: 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .carousel-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  .data-ia-hero .hero-card{
    height: 520px !important;
  }
}

/* Cybersecurity Page Responsive Design */
@media (max-width: 1024px) {
  .cybersecurity-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .security-shield {
    width: 350px;
    height: 350px;
  }

  .risk-assessment {
    padding: 5rem 1.5rem;
  }

  .assessment-content {
    gap: 3rem;
  }

  .monitoring-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .cybersecurity-hero {
    padding: 6rem 1rem 3rem;
  }

  .cybersecurity-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left {
    order: 1;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .hero-info {
    width: 100%;
    align-items: center;
  }

  .hero-right {
    order: 2;
  }


  .hero-description {
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-description {
    font-size: 0.85rem;
  }

  .security-shield {
    width: 300px;
    height: 300px;
  }

  .client-logos-shield .logo-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .client-logos-shield .logo-item i {
    font-size: 1rem;
  }

  /* Ajustar posiciones de logos para tablets */
  .logo-top-left {
    top: 15%;
    left: -10%;
  }

  .logo-top-right {
    top: 15%;
    right: -10%;
  }

  .logo-bottom-left {
    bottom: 15%;
    left: -10%;
  }

  .logo-bottom-right {
    bottom: 15%;
    right: -10%;
  }

  .services-section {
    margin-top: 3rem;
  }

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

  .service-block {
    text-align: center;
    padding: 2rem 1rem;
  }


  /* Risk Assessment Responsive */
  .risk-assessment {
    padding: 4rem 1rem;
  }

  .assessment-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .assessment-text {
    order: 2;
    text-align: center;
  }

  .assessment-image {
    order: 1;
  }

  .assessment-title {
    font-size: 2rem;
  }

  .assessment-benefits {
    justify-content: center;
  }

  /* Monitoring Content Responsive */
  .monitoring-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 6rem;
  }

  .monitoring-text {
    order: 2;
    text-align: center;
  }

  .monitoring-image {
    order: 1;
  }

  .monitoring-title {
    font-size: 2rem;
  }

  .monitoring-description {
    font-size: 0.95rem;
  }

  .monitoring-benefits {
    justify-content: center;
  }

  .assessment-button{
    margin: auto;
  }
}

@media (max-width: 480px) {
  .cybersecurity-hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-left {
    gap: 1.2rem;
    align-items: center;
    text-align: center;
  }

  .hero-info {
    width: 100%;
    align-items: center;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-text {
    font-size: 0.9rem;
  }

  .trust-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .security-shield {
    width: 250px;
    height: 250px;
  }

  .client-logos-shield .logo-item {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    border-radius: 12px;
    gap: 0.25rem;
  }

  .client-logos-shield .logo-item i {
    font-size: 0.7rem;
  }

  /* Ajustar posiciones de logos para móvil */
  .logo-top-left {
    top: 8%;
    left: -15%;
  }

  .logo-top-right {
    top: 8%;
    right: -15%;
  }

  .logo-bottom-left {
    bottom: 8%;
    left: -15%;
  }

  .logo-bottom-right {
    bottom: 8%;
    right: -15%;
  }

  .services-section {
    margin-top: 2rem;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .service-block {
    padding: 1.5rem 0.8rem;
  }

  /* Risk Assessment Mobile */
  .risk-assessment {
    padding: 3rem 0.5rem;
  }

  .assessment-content {
    gap: 2rem;
  }

  .assessment-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .assessment-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

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

  .benefit-text {
    font-size: 0.85rem;
  }

  .assessment-button,
  .monitoring-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Monitoring Content Mobile */
  .monitoring-content {
    margin-top: 4rem;
    gap: 2rem;
  }

  .monitoring-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .monitoring-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .monitoring-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .monitoring-image img {
    min-height: 250px;
  }
}

/* Extra small screens - Ajuste adicional para logos del escudo */
@media (max-width: 360px) {
  .security-shield {
    width: 220px;
    height: 220px;
  }

  .client-logos-shield .logo-item {
    font-size: 0.6rem;
    padding: 0.2rem 0.35rem;
    border-radius: 10px;
    gap: 0.2rem;
  }

  .client-logos-shield .logo-item i {
    font-size: 0.65rem;
  }

  /* Posiciones más separadas para pantallas muy pequeñas */
  .logo-top-left {
    top: 5%;
    left: -18%;
  }

  .logo-top-right {
    top: 5%;
    right: -18%;
  }

  .logo-bottom-left {
    bottom: 5%;
    left: -18%;
  }

  .logo-bottom-right {
    bottom: 5%;
    right: -18%;
  }
}

/* Fintech Page Responsive Design */
@media (max-width: 1024px) {
  .fintech-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .fintech-title {
    font-size: 3.5rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .services-grid {
    gap: 2.5rem;
  }

  .benefits-grid {
    gap: 4rem;
  }


  .column-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {

  .fintech-hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .hero-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-image img {
    max-width: 350px;
  }

  .chart-section {
    margin-bottom: 3rem;
  }

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

  .service-item {
    padding: 1.2rem;
    border: 1px solid #333;
    border-radius: 8px;
    border-left: 2px solid #4a9eff;
    background: rgba(0, 0, 0, 0.3);
  }

  .fintech-benefits {
    padding: 4rem 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .column-title {
    font-size: 1.6rem;
    text-align: center;
  }

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

  .benefits-list {
    gap: 1.5rem;
  }

  .benefit-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center !important;
    padding-left: 0 !important;
  }

  .fintech-testimonials {
    padding: 4rem 2rem;
  }
}

@media (max-width: 480px) {

  .fintech-hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-image img {
    max-width: 280px;
  }

  .chart-section {
    margin-bottom: 2rem;
  }

  .chart-container {
    padding: 0 1rem;
  }

  .growth-chart {
    height: 150px;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .service-item {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 2px solid #4a9eff;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }

  .service-icon i {
    font-size: 1.1rem;
  }

  .fintech-benefits {
    padding: 3rem 1rem;
  }


  .benefits-grid {
    gap: 2rem;
  }

  .column-title {
    font-size: 1.4rem;
  }

  .column-subtitle {
    font-size: 0.9rem;
  }

  .benefits-list {
    gap: 1rem;
  }

  .benefit-item {
    gap: 0.6rem;
    padding: 0.8rem 0;
  }

  .benefit-icon {
    width: 35px;
    height: 35px;
  }

  .benefit-icon i {
    font-size: 0.9rem;
  }

  .benefit-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .fintech-testimonials {
    padding: 3rem 1rem;
  }

  .carousel-container {
    padding: 2rem 1.5rem;
    min-height: 350px;
  }

  .testimonial-text {
    font-size: 1.1rem;
    margin: 3rem 0 1.5rem 0;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .carousel-controls {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .carousel-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    flex: 1;
    min-width: 120px;
  }
}

/* Extra small screens for Fintech */
@media (max-width: 360px) {

  .fintech-main {
    padding-top: 3rem;
  }


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

  .hero-image img {
    max-width: 250px;
  }

  .chart-container {
    padding: 0 0.5rem;
  }

  .growth-chart {
    height: 120px;
    min-height: 120px;
  }

  .service-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }


  .column-title {
    font-size: 1.2rem;
  }

  .column-subtitle {
    font-size: 0.85rem;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }

  .benefit-icon i {
    font-size: 0.8rem;
  }

  .benefit-text {
    font-size: 0.85rem;
  }

  .carousel-container {
    padding: 1.5rem 1rem;
    min-height: 320px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .carousel-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    min-width: 100px;
  }
}

/* Development Page Responsive Design */
@media (max-width: 1024px) {
  .development-hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 80vh;
  }

  .development-main-title {
    font-size: 3rem;
  }

  .development-subtitle {
    font-size: 1.1rem;
  }

  .hero-services-bottom {
    gap: 3rem;
  }

  .services-grid-redesign {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .service-image-redesign {
    height: 200px;
  }

  .services-title-redesign {
    font-size: 2.5rem;
  }

  .digital-circle-large {
    width: 300px;
    height: 300px;
  }

  .digital-circle-large::before {
    width: 200px;
    height: 200px;
  }

  .floating-numbers span {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .development-hero {
    padding: 6rem 1rem 3rem;
    min-height: 70vh;
  }

  .development-main-title {
    font-size: 2.5rem;
    line-height: 1.1;
    text-align: center;
  }
  
  .development-main-title br{
    display: none !important;
  }

  .development-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .hero-main-content {
    margin-bottom: 4rem;
  }

  .hero-benefits-list {
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .hero-benefits-list .benefit-item {
    text-align: left;
    max-width: 500px;
  }

  .hero-benefits-list .benefit-text {
    font-size: 1rem;
  }

  .hero-services-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-block-bottom {
    padding: 1.5rem;
    text-align: center;
  }

  .service-icon-bottom {
    margin: 0 auto 1.5rem auto;
  }


  .key-services-redesign {
    padding: 6rem 2rem;
  }

  .services-grid-redesign {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-image-redesign {
    height: 250px;
  }

  .services-title-redesign {
    font-size: 2.2rem;
    text-align: center;
  }

  .services-header-redesign {
    text-align: center;
  }

  .services-description-redesign {
    font-size: 1rem;
  }

  /* Background effects mobile */
  .digital-circle-large {
    width: 200px;
    height: 200px;
    right: -50px;
  }

  .digital-circle-large::before {
    width: 150px;
    height: 150px;
  }

  .floating-numbers span {
    font-size: 2.5rem;
  }

  .tech-grid {
    width: 150px;
    height: 150px;
  }

  .benefit-icon-redesign{
    margin: auto !important;
  }
}

@media (max-width: 480px) {
  .development-main {
    padding-top: 3rem;
  }

  .development-hero {
    padding: 5rem 1rem 2rem;
    min-height: 60vh;
  }

  .development-main-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .development-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-main-content {
    margin-bottom: 3rem;
  }

  .hero-benefits-list {
    gap: 1rem;
  }

  .hero-benefits-list .benefit-item {
    gap: 0.8rem;
  }

  .hero-benefits-list .benefit-check {
    width: 20px;
    height: 20px;
  }

  .hero-benefits-list .benefit-check i {
    font-size: 0.7rem;
  }

  .hero-benefits-list .benefit-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-services-bottom {
    gap: 1.5rem;
  }

  .service-block-bottom {
    padding: 1.2rem;
    text-align: center;
  }

  .service-icon-bottom {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem auto;
  }

  .service-icon-bottom i {
    font-size: 1.1rem;
  }

  .service-title-bottom {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .service-description-bottom {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .key-services-redesign {
    padding: 4rem 1rem;
  }

  .services-header-redesign {
    margin-bottom: 3rem;
    text-align: center;
  }

  .services-title-redesign {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .services-description-redesign {
    font-size: 0.9rem;
  }

  .service-card-redesign {
    border-radius: 15px;
  }

  .service-image-redesign {
    height: 200px;
  }

  .service-content-redesign {
    padding: 1.5rem;
    gap: 0.8rem;
    text-align: center;
  }

  .service-title-redesign {
    font-size: 1.2rem;
  }

  .service-description-redesign {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .service-button-redesign {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    align-self: center;
  }

  /* Background effects mobile small */
  .digital-circle-large {
    width: 150px;
    height: 150px;
    right: -30px;
    top: 10%;
  }

  .digital-circle-large::before {
    width: 100px;
    height: 100px;
  }

  .floating-numbers span {
    font-size: 2rem;
  }

  .number-1 {
    left: 5%;
  }

  .number-2 {
    left: 10%;
  }

  .number-3 {
    right: 5%;
  }

  .tech-grid {
    width: 100px;
    height: 100px;
    left: 5%;
  }

  .digital-lines {
    background-size: 30px 30px;
  }
}

/* Extra small screens for Development */
@media (max-width: 360px) {
  .development-main-title {
    font-size: 1.8rem;
  }

  .development-subtitle {
    font-size: 0.85rem;
  }

  .hero-benefits-list .benefit-text {
    font-size: 0.85rem;
  }

  .service-title-bottom {
    font-size: 1rem;
  }

  .service-description-bottom {
    font-size: 0.8rem;
  }

  .services-title-redesign {
    font-size: 1.6rem;
  }

  .services-description-redesign {
    font-size: 0.85rem;
  }

  .service-image-redesign {
    height: 180px;
  }

  .service-content-redesign {
    padding: 1.2rem;
  }

  .service-title-redesign {
    font-size: 1.1rem;
  }

  .service-description-redesign {
    font-size: 0.8rem;
  }

  .service-button-redesign {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Background effects extra small */
  .digital-circle-large {
    width: 120px;
    height: 120px;
  }

  .digital-circle-large::before {
    width: 80px;
    height: 80px;
  }

  .floating-numbers span {
    font-size: 1.5rem;
  }

  .tech-grid {
    width: 80px;
    height: 80px;
  }
}
