/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: rgba(255, 255, 255, 0.901);
  background-color: #031119;
  font-family: "Inter", "Roboto", sans-serif; /* Update Typo */
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color:  #f8b12e;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: rgba(227, 161, 39, 0.75);
}

h1, h2, h3, h4, h5, h6 {
  color: rgba(255, 255, 255, 0.901);
  font-family: "Outfit", "Nunito Sans", sans-serif; /* Update Typo */
}

h4 {
  text-transform: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   2. TYPOGRAPHIE GLOBALE & TITRES DE SECTIONS
   ========================================================================== */
.section {
  padding: 80px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 50px;
  position: relative;
  text-align: left;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.901);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background:  #f8b12e;
  margin: 4px 10px;
  vertical-align: middle;
}

.section-title div {
   color: rgba(255, 255, 255, 0.901);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  margin-top: 10px;
}

.description-title {
  color:  #f8b12e;
}

/* ==========================================================================
   3. HEADER & NAVIGATION - REDESIGN BY DESIGNER
   ========================================================================== */

/* Structure Globale du Header */
.header {
  padding: 30px 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  background-color: transparent;
}

/* État lors du Scroll */
.header.scrolled {
  padding: 12px 0;
  background-color: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Container de Navigation (Style Flottant) */
.header-container {
  background: #1b262c;
  border-radius: 100px; 
  padding: 12px 40px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled .header-container {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

/* Section Logo */
.header .logo {
  gap: 15px;
}

.header .logo-img {
  max-height: 45px; 
  width: 45px;
  transition: transform 0.3s ease;
}

.header .logo:hover .logo-img {
  transform: scale(1.05);
}


.header .logo .sitename {
  
  font-family: 'Syne', sans-serif;
  font-size: 28px; 
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px; 
  color: #ffffff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

/* Menu de Navigation */
.navmenu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px; 
}

.nav-link {
  font-size: 17px; 
  font-weight: 600;
  color: rgba(224, 233, 242, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: #38bdf8; 
}

/* Soulignement animé au survol */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color:#f8b12e;
  transition: width 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container {
    margin: 0 15px;
    padding: 10px 25px;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 15px 0;
  }
  
  .header-container {
    border-radius: 12px; 
  }

  .nav-list {
    display: none;  
  }
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu ul {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .navmenu a {
      color: rgba(255, 255, 255, 0.901);
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    transition: 0.3s;
    padding: 10px 0;
    position: relative;
  }

  .navmenu a:hover, .navmenu .active {
    color:  #f8b12e;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header-container {
    padding: 10px 20px;
    border-radius: 12px;
  }

  .mobile-nav-toggle {
      color: rgba(255, 255, 255, 0.901);
    font-size: 28px;
    cursor: pointer;
    z-index: 9999;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(3, 17, 25, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 9998;
  }

  .navmenu.active ul {
    display: flex;
  }

  .navmenu a {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.901);
    font-family: "Raleway", sans-serif;
  }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);
}

/* ==========================================================================
   RE-DESIGN H1 : LUXURY TECH STYLE
   ========================================================================== */

.hero-h1 {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: 1.9rem; 
  font-weight: 400; 
  letter-spacing: -0.02em;
  margin: 0;
  color: #ffffff;
  max-width: 800px;
  text-transform: uppercase;
}

/* Focus sur le mot important */
.hero h1 .highlight {
  color: #f8b12e;
  font-weight: 400; 
  display: inline-block;
  position: relative;
}


/* Responsive H1 */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 1.9rem;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 1.65rem;
    letter-spacing: -0.01em;
  }
  .hero-h1 {
    gap: 12px;
  }
}

/* Fin du redesign H1 */

#title-h3 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 1px;
  margin-top: 25px;
  font-weight: 400;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.961);
}

.hero .divider {
  width: 60px; 
  height: 3px;
  background-color:  #f8b12e;
  margin: 25px 0;
  border-radius: 10px;
}

.hero .description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.901);
  max-width: 600px;
  margin-bottom: 35px;
}



.cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color:  #f8b12e;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(227, 161, 39, 0.2);
}

.cta-button .btn span {
  margin-right: 12px;
}

.cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(227, 161, 39, 0.4);
  color: #ffffff;
}

.cta-button .btn:hover i {
  transform: translateX(5px);
}

.visual-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fluid-shape img {
  max-width: 500px;
  margin-top: 30px;
}



/* ==========================================================================
   5. ABOUT SECTION & TESTIMONIALS
   ========================================================================== */
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content .lead {
  font-weight: 600;
  color:  #f8b12e;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-item {
  background: #1b262c;
  padding: 25px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.1);
}

.feature-item i {
  font-size: 30px;
  color:  #f8b12e;
  margin-bottom: 15px;
  display: block;
}

.testimonial-item {
  background: #1b262c;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
}

.testimonial-item .rating i {
  color:  #f8b12e;
  font-size: 14px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.slider-next,.slider-prev{
  
  width: 70px;
  height: 70px;
  border-radius: 40px;
  background-color: #f8b12e;
}
.fleche{
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  right: 15px;

}
/* ==========================================================================
   6. SERVICES SECTION
   ========================================================================== */
.service-header {
  margin-bottom: 50px;
}

.service-card {
  background: #1b262c;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color:  #f8b12e;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon i {
  font-size: 45px;
  color:  #f8b12e;
  margin-bottom: 20px;
  display: inline-block;
}

.card-action {
  display: none;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #e0e9f2;
}

.service-card h3 span {
  color:  #f8b12e;
}

/* ==========================================================================
   7. STEPS SECTION
   ========================================================================== */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  background: #1b262c;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  border-top: 4px solid  #f8b12e;
}

.step-icon {
  font-size: 40px;
  color:  #f8b12e;
  margin-bottom: 20px;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

/* ==========================================================================
   8. PORTFOLIO SECTION
   ========================================================================== */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.portfolio-filters li {
  cursor: pointer;
  background: #1b262c;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.portfolio-filters li:hover, .portfolio-filters li.filter-active {
  background:  #f8b12e;
  color: #ffffff;
}

.portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.entry-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.entry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 25, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-entry:hover .entry-image img {
  transform: scale(1.1);
}

.portfolio-entry:hover .entry-overlay {
  opacity: 1;
}

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

.entry-meta {
  color:  #f8b12e;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.entry-links {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.entry-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}

.entry-links a:hover {
  background:  #f8b12e;
}

/*==========================================================================TEAM & PARTNERSHIP SECTION (FIXED)
   ========================================================================== */
.texte-team {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

.phrase-couleur-orange {
  color:  #f8b12e;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}

.team-member {
  background: #1b262c;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color:  #f8b12e;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.team-member .member-img {
  margin-bottom: 20px;
}

.team-member .member-img img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover .member-img img {
  border-color:  #f8b12e;
}

.team-member .member-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
  align-items: center;
  width: 100%;
}

.team-member h4 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #e0e9f2;
}

.team-member span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color:  #f8b12e;
  margin-bottom: 15px;
  font-weight: 700;
}

.team-member p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.team-member .social {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  margin-top: auto; 
}

.team-member .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition: 0.3s;
}

.team-member .social a:hover {
  background:  #f8b12e;
  color: #ffffff;
  transform: translateY(-3px);
}


.btn-custom-outline {
  background: transparent;
  color:  #f8b12e;
  border: 1px solid  #f8b12e;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.btn-custom-outline:hover {
  background:  #f8b12e;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(227, 161, 39, 0.3);
}

/*======================MODAL TEAM & PARTNERSHIP====================================================================*/
   
.team-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.team-modal.active {
  display: flex;
}

.team-modal-content {
  background: #1b262c;
  width: 100%;
  max-width: 550px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255, 255, 255, 0.8);
}

.team-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: 0.3s;
}

.team-modal-close:hover {
  color:  #f8b12e;
}

.team-modal-header {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 30px;
}

.team-modal-header img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid  #f8b12e;
}

.modal-role {
  font-weight: 600;
  color:  #f8b12e;
  margin-top: 5px;
}

/* ==========================================================================
   11. FAQ SECTION
   ========================================================================== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #1b262c;
  padding: 20px 25px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 30px;
  color: #e0e9f2;
}

.faq-content {
  display: none;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.faq-active .faq-content {
  display: block;
}

.faq-toggle {
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 16px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.8);
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
  color:  #f8b12e;
}

/* ==========================================================================
   12. CONTACT & FORMULAIRE
   ========================================================================== */
.contact-info-box {
  background: #1b262c;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-info-box .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(227, 161, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color:  #f8b12e;
}

.contact-info-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #e0e9f2;
}

.contact-info-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper {
  background: #1b262c;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-wrapper h3 {
  color: #e0e9f2;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  top: 15px;
  left: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}

.input-with-icon .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 15px 15px 15px 45px;
  border-radius: 8px;
  transition: 0.3s;
}

.input-with-icon .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color:  #f8b12e;
  outline: none;
  box-shadow: none;
  color: #ffffff;
}

.input-with-icon .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-check-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.form-check-label a {
  color:  #f8b12e;
  text-decoration: underline;
}

.btn-submit {
  background:  #f8b12e;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: rgba(227, 161, 39, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(227, 161, 39, 0.3);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
  background-color: #031119;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-about .logo span {
  font-size: 24px;
  font-weight: 700;
  color: #e0e9f2;
}

.footer-about p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background:  #f8b12e;
  border-color:  #f8b12e;
  color: #ffffff;
}

.footer-links h4, .footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e0e9f2;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color:  #f8b12e;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.copyright strong {
  color:  #f8b12e;
}

.phrase-couleur-orange{
  color:  #f8b12e;
  text-transform: none;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

/* ==========================================================================
   14. UTILITIES & ANIMATIONS
   ========================================================================== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background:  #f8b12e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(227, 161, 39, 0.8);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #031119;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid  #f8b12e;
  border-top-color: #1b262c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   ARCHITECTURE MOBILE (Optimized)
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: 70px 24px;
  }

  .visual-content, .fluid-shape, .stats-card, .section-title h2::after {
    display: none !important;
  }

  .section-title h2 {
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.25em;
    color:  #f8b12e;
    margin-bottom: 12px;
  }

  .section-title div {
    font-size: clamp(1.9rem, 8vw, 2.3rem) !important;
    line-height: 1.1;
  }

  .hero .description p {
    font-size: 1rem;
    border-left: 3px solid  #f8b12e;
    padding-left: 20px;
  }

  .service-card, .feature-item, .step-item, .team-member, .contact-form-wrapper {
    background: rgba(27, 38, 44, 0.5) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: left;
  }
}