@font-face {
  font-family: "GothamMedium";
  src: url("../assets/fonts/GothamMedium.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GothamBold";
  src: url("../assets/fonts/GothamBold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "GothamBook";
  src: url("../assets/fonts/GothamBook.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0 env(safe-area-inset-left) 0 env(safe-area-inset-right);
  font-family: "Inter", sans-serif;
  background: linear-gradient(90deg, #000000, #191919);
  color: white;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}


/* Fondo animado */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* HEADER */
/*
header {
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
*/

header {
  position: fixed; /* Fija el header en la pantalla */
  top: 0; /* arriba de todo */
  left: 0;
  width: 100%; /* ocupa todo el ancho */
  z-index: 1000; /* sobre todos los demás elementos */
  padding: 0px 10%;
  padding-top: env(safe-area-inset-top);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95),
    rgba(25, 25, 25, 0.85)
  );
  box-sizing: border-box;
  /*background-color: rgba(25, 25, 25, 0.96);/* importante para que no se vea transparente */
  /*box-shadow: 0 2px 10px rgb(255, 214, 66, 0.5); /* opcional: sombra */
}

.logo img {
  height: auto;
  width: 150px;
}

.navbar {
  display: none;
  gap: 30px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  color: #ffd642;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Menu overlay fullscreen */
.menu-overlay {
  display: none;
  position: fixed;
  margin-top: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(25, 25, 25, 0.95));
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.menu-overlay-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  text-align: center;
  align-items: center;
}

.menu-overlay-nav a {
  color: white;
  text-decoration: none;
  font-family: "GothamBold", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  transition: color 0.3s ease;
  background: linear-gradient(90deg, #ffc419, #d3a707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-overlay-nav-footer {
  display: flex;
  flex-direction: column;
  background: transparent;
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.menu-overlay-nav-footer a {
  color: white;
  text-decoration: none;
  font-family: "GothamBold", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  
}

.menu-overlay-nav a:hover {
  color: #ffd642;
  -webkit-text-fill-color: unset;
}

/* Subrayado progresivo para links (animación left-to-right) */
.menu-overlay-nav a,
.navbar a,
.contact-info a {
  position: relative;
  display: inline-block;
  padding: 0; /* ensure underline matches text width */
}

.menu-overlay-nav a::after,
.navbar a::after,
.contact-info a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: #ffd642;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(.2,.9,.2,1);
  border-radius: 2px;
}

.navbar a::after,
.contact-info a::after { bottom: -4px; height: 2px; }

.menu-overlay-nav a:hover::after,
.navbar a:hover::after,
.contact-info a:hover::after {
  transform: scaleX(1);
}

/* Make the underline retract from right when mouse leaves quickly */
.menu-overlay-nav a:not(:hover)::after,
.navbar a:not(:hover)::after {
  transform-origin: right center;
}

/* MEDIA QUERY para móvil */
@media screen and (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 100px;
    right: 0;

    background: rgba(255, 214, 66, 0.95);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    gap: 20px;
    display: none; /* oculto por defecto */
  }

  .hamburger {
    display: flex;
    /* visible en móvil */
  }
}

.navbar.active {
  display: flex;
}

/* HERO */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-family: "GothamBold", sans-serif;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(90deg, #ffc419, #d3a707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-family: "GothamBook", sans-serif;
  font-size: 2.2rem;
  margin-top: 15px;
}
/*
.floating-img {
    display: block;
    width: 200px; /* ajusta al tamaño que quieras 
    margin: 0 auto;
    /* si quieres suavidad extra en transform 
    transform-origin: center;
}

<div>
          <img
            src="assets/img/BFT-logo.png"
            alt="Hero Image"
            class="floating-img"
          />
        </div>*/

.gridHero {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.gridHero img {
  width: 400px;
  height: 400px;
}

.scroll-down {
  position: absolute;
  bottom: 100px; /* espacio desde el final del hero */
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid #ffd642;
  border-radius: 25px;
  display: flex;
  justify-content: center;
}

.scroll-down span {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #ffd642;
  border-radius: 50%;
  margin-top: 5px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(15px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .scroll-down {
    border: none;
    width: auto;
    height: auto;
    bottom: 50px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .scroll-down span {
    display: none; /* ocultamos el punto animado */
  }

  .scroll-down::before {
    content: "<";
    display: block;
    color: #ffd642;
    font-size: 2.2rem;
    transform-origin: center;
    line-height: 1;
    animation: scroll-mobile 1.5s infinite;
  }

  @keyframes scroll-mobile {
    0% {
      transform: translateY(0) rotate(-90deg);
      opacity: 1;
    }
    50% {
      transform: translateY(15px) rotate(-90deg);
      opacity: 0.5;
    }
    100% {
      transform: translateY(0) rotate(-90deg);
      opacity: 1;
    }
  }
}
/* Botón */
.btn {
  text-decoration: none;
  margin-top: 30px;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid rgb(255, 214, 66);
  color: #ffd642;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #ffd642;
  color: #0a0a0a;
  transform: scale(1.05);
}

/* Servicios */

.quehacemos {
  font-family: "GothamBold", sans-serif;
  text-align: center;
}

.services {
  padding: 100px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
/*
@media (max-width: 900px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*
@media (max-width: 1440px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-columns: 1fr;
    }
}*/

.service-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 214, 66, 0.2);
}

.service-card h3 {
  font-family: "GothamBook", sans-serif;
  margin-top: 0;
  color: #ffd642;
}

.reveal-title {
  font-family: "GothamBold", sans-serif;
  text-align: center;
  color: white;
}

.reveal-title span {
  transform: translateY(10px);
}

/* HOW WE DO IT */

.how-we-work {
  font-family: "GothamBold", sans-serif;
  padding: 100px 10%;
  position: relative;
  color: white;
}

.progress-container {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 40px 0;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd642, #b49b3f);
  border-radius: 4px;
  transition: width 0.25s ease-out;
}

.stages {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 770px) {
  .stages {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.stage {
  position: relative;
  text-align: center;
  transition: transform 0.3s, color 0.3s; /* suaviza el cambio de tamaño y color */
}

.stage.active {
  color: #ffd642;
  transform: scale(1.2); /* aumenta tamaño al activarse */
}

/* Portfolio */

.portfolio {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding: 80px 0;
}

@media (max-width: 1200px) {
  .portfolio {
    flex-direction: column;
    gap: 40px;
  }
}

.portfolio-viewport {
  width: 550px; /* visible solo UNA tarjeta */
  overflow: hidden;
}

.portfolio-track {
  display: flex;
  gap: 20px;
}

.portfolio-card {
  width: 550px;
  height: 600px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 720px) {
  .portfolio-viewport {
    width: 295px; /* ajusta al tamaño de móvil */
  }

  .portfolio-card {
    width: 300px;
    height: 325px; /* asegura que la tarjeta sea cuadrada */
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Flechas */
.arrow {
  background: none;
  border: 1px solid #ffd642;
  color: #ffd642;
  font-size: 1.5rem;
  padding: 10px 15px;
  cursor: pointer;
}

.arrow:hover {
  background: #ffd642;
  color: #000;
}

/* Contact page styles */
.contact-section {
  padding: 80px 20px;
  background: transparent;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 212, 66, 0.3);
  transform: translateY(-8px);
}

.contact-card h3 {
  margin: 0 0 16px 0;
  color: #ffd642;
  font-family: "GothamMedium", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card a {
  color: rgba(255, 212, 66, 0.9);
}

.contact-card a:hover {
  color: #ffd642;
}

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

.contact-social h3 {
  margin: 0 0 24px 0;
  color: #ffd642;
  font-family: "GothamMedium", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-link:hover {
  color: #ffd642;
  border-color: #ffd642;
  background: rgba(255, 212, 66, 0.1);
  transform: translateY(-4px);
}

@media screen and (max-width: 768px) {
  .contact-section { padding: 60px 20px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-card { padding: 20px; }
  .social-links { gap: 12px; }
  .social-link { padding: 8px 16px; font-size: 0.8rem; }
}


.contact-card #subtitle {
  margin: 0 0 16px 0;
  color: #dcdcdc;
  font-family: "GothamBook", sans-serif;
  font-size: 1.25rem;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: white;
  transition: box-shadow 0.18s ease, transform 0.12s ease, border-color 0.12s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  box-shadow: 0 8px 30px rgba(255, 214, 66, 0.08);
  border-color: #ffd642;
  transform: translateY(-2px);
  outline: none;
}

#contact-form textarea { resize: vertical; }

#contact-form .btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid #ffd642;
  background: transparent;
  color: #ffd642;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}

#contact-form .btn:hover {
  background: #ffd642;
  color: #0a0a0a;
  transform: scale(1.02);
}

#form-status { color: #ffd642; margin-top: 8px; display: none; }

@media screen and (max-width: 768px) {
  .contact-wrapper { padding: 40px 6%; gap: 20px; }
  .contact-hero { padding-top: 80px; padding-bottom: 60px; }
  .contact-image,
  .contact-card { max-width: 100%; flex-basis: 100%; }
  #contact-form input,
  #contact-form textarea { font-size: 0.95rem; }
}

/*
.portfolio {
    font-family: 'GothamBold', sans-serif;
    padding: 100px 10%;
    text-align: center;
    color: white;
}

.portfolio h2 {
    font-family: 'GothamMedium', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    
}

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

.portfolio-card {
    background: rgba(63, 62, 62, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.portfolio-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    border: rgb(204, 204, 204, 0.1) solid 2px;
}

.portfolio-card h3 {
    font-family: 'GothamBook', sans-serif;
    margin-top: 0;
    font-size: 2rem;
    color: #00E8FF;
}

.portfolio-card p {
    font-family: 'GothamBook', sans-serif;
    font-size: 1rem;
    color: #CCCCCC;
}
*/

/* Contact Us */

.contact-us {
  font-family: "GothamBold", sans-serif;
  padding: 100px 10%;
  text-align: center;
  color: white;
  
}

.contact-but{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 100px;
}

.contact-but a{
  text-decoration: none;
  color: white;
}

.contact-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  
}

@media (max-width: 470px) {
  .contact-but{
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
  }
}

/* FOOTER */

/* MOBILE: reemplaza el indicador 'scroll-down' por un "<" apuntando hacia abajo */

footer {
  color: white;
  background-color: #0a0a0a;
  text-align: center;
  align-items: center;
  padding: 2rem;
}

/* About Page Styles */
.about-hero {
  min-height: calc(100vh - 88px);
  padding-top: 48px;
}

.about-content {
  padding: 100px 10%;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 214, 66, 0.1);
}

.about-text h2 {
  margin: 0 0 20px 0;
  font-size: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 16px;
}

/* Values Section */
.about-values {
  padding: 100px 10%;
  background: rgba(255, 255, 255, 0.01);
}

.about-values h2 {
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-card h3 {
  font-family: "GothamBold", sans-serif;
  font-size: 1.3rem;
  color: #ffd642;
  margin: 0 0 12px 0;
}

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

/* Team Section */
.about-team {
  padding: 100px 10%;
}

.about-team h2 {
  text-align: center;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.member-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-family: "GothamBold", sans-serif;
  font-size: 1.2rem;
  color: #ffd642;
  margin: 0 0 8px 0;
}

.member-role {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

/* CTA Section */
.about-cta {
  padding: 100px 10%;
  text-align: center;
  background: rgba(255, 214, 66, 0.04);
}

.about-cta h2 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.about-cta p {
  font-size: 1.1rem;
  color: #dcdcdc;
  margin-bottom: 32px;
}

.about-cta .btn {
  display: inline-block;
}

/* About responsive */
@media screen and (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content,
  .about-values,
  .about-team,
  .about-cta {
    padding: 60px 6%;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-text h2,
  .about-cta h2 {
    font-size: 1.5rem;
  }

  .about-text p,
  .about-cta p {
    font-size: 1rem;
  }
}
/* Services Page Styles */
.services-hero {
  height: 100vh;
  padding-top: 48px;
}

.services-section {
  padding: 100px 10%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.services-container {
  margin: 0 auto;
  box-sizing: border-box;
}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detailed.alternate {
  direction: rtl;
}

.service-detailed.alternate > * {
  direction: ltr;
}

.service-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 214, 66, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-info h2 {
  margin: 0 0 20px 0;
  font-size: 2rem;
}

.service-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-features li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: #bbb;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd642;
  font-weight: bold;
}

/* Process Section */
.services-process {
  padding: 100px 10%;
  background: rgba(255, 255, 255, 0.01);
  box-sizing: border-box;
  overflow-x: hidden;
}

.services-process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  text-align: center;
}

.step-number {
  font-family: "GothamBold", sans-serif;
  font-size: 2.5rem;
  color: #ffd642;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: "GothamBold", sans-serif;
  font-size: 1.1rem;
  color: white;
  margin: 0 0 12px 0;
}

.process-step p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
  line-height: 1.5;
}

/* Tech Stack Section */
.services-tech {
  padding: 100px 10%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.services-tech h2 {
  text-align: center;
  margin-bottom: 60px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: #ffd642;
  background: rgba(255, 214, 66, 0.05);
}

.tech-item h3 {
  font-family: "GothamBold", sans-serif;
  font-size: 1.1rem;
  color: #ffd642;
  margin: 0 0 12px 0;
}

.tech-item p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
  line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
  padding: 100px 10%;
  text-align: center;
  background: rgba(255, 214, 66, 0.04);
}

.services-cta h2 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.services-cta p {
  font-size: 1.1rem;
  color: #dcdcdc;
  margin-bottom: 32px;
}

.services-cta .btn {
  display: inline-block;
}

/* Services responsive */
@media screen and (max-width: 768px) {
  .service-detailed {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .service-detailed.alternate {
    direction: ltr;
  }

  .service-image {
    height: 250px;
  }

  .service-info h2 {
    font-size: 1.5rem;
  }

  .service-info p {
    font-size: 0.95rem;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .services-section,
  .services-process,
  .services-tech,
  .services-cta {
    padding: 60px 6%;
  }

  .process-timeline,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-cta h2 {
    font-size: 1.5rem;
  }

  .services-cta p {
    font-size: 1rem;
  }
}