/**
* Template Name: Presento
* Template URL: https://issagency.fr
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: ISS Agency
* License: https://issagency.fr
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://issagency.fr
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e03a3c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #e03a3c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e03a3c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo .footer-logo-img {
  width: clamp(150px, 16vw, 210px);
  max-height: 66px;
  object-fit: contain;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 9990;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover,
.wa-float:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 575px) {
  .wa-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 16px;
  }

  .wa-float svg {
    width: 27px;
    height: 27px;
  }

  .section {
    padding: 28px 0;
  }

  .stats .stats-item {
    min-height: 0;
    padding: 18px 14px;
  }

  .stats .row.gy-4 {
    --bs-gutter-y: 14px;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 84px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 44px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .hero-area {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0 0;
  max-width: 560px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.hero .hero-area i {
  color: var(--accis-orange, #f47a22);
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: #ffffff;
  color: var(--accis-blue);
  box-shadow: 0 10px 26px rgba(11, 47, 69, 0.14);
  width: 60px;
  height: 60px;
  font-size: 25px;
  border-radius: 50%;
  border: 1px solid rgba(11, 47, 69, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .row > [class*="col-"] {
  align-self: stretch;
}

.stats i.google-icon::before,
.google-review-card .google-icon::before {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* Couleur propre à chaque icône de stat */
.stats i.bi-geo-alt {
  color: #e0413a;
}

.stats i.bi-shield-check {
  color: #29a35a;
}

.stats i.bi-lightning-charge {
  color: #f2a91d;
}

/* Rayon d'intervention : "50 km" */
.stats .stats-item .stats-figure {
  display: block;
}

.stats .stats-item .stats-figure .purecounter {
  display: inline;
}

.stats .stats-item .stats-figure .stats-unit {
  display: inline;
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--heading-color);
}

.stats .stats-item {
  background-color: #ffffff;
  margin-top: -30px;
  padding: 44px 22px 28px;
  width: 100%;
  min-height: 168px;
  height: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 45px rgba(11, 47, 69, 0.09);
  border: 1px solid rgba(11, 47, 69, 0.05);
  border-radius: 16px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stats .stats-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(11, 47, 69, 0.16);
  border-color: rgba(11, 47, 69, 0.1);
}

.stats .stats-item span {
  font-size: 42px;
  display: block;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14.5px;
  line-height: 1.4;
  min-height: 41px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  color: var(--heading-color);
  background: #ffffff;
  border: 1px solid rgba(11, 47, 69, 0.08);
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 8px 22px rgba(11, 47, 69, 0.05);
}

.tabs .nav-link i {
  padding-right: 14px;
  font-size: 34px;
  color: var(--accis-blue);
  transition: color 0.25s ease;
}

.tabs .nav-link svg.tab-icon {
  width: 30px;
  height: 30px;
  margin-right: 14px;
  color: var(--accis-blue);
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.tabs .nav-link.active svg.tab-icon {
  color: #ffffff;
}

@media (max-width: 768px) {
  .tabs .nav-link svg.tab-icon {
    margin-right: 0;
  }
}

.tabs .nav-link h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--accis-blue), transparent 55%);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 47, 69, 0.1);
}

.tabs .nav-link.active {
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(0, 121, 184, 0.28);
}

.tabs .nav-link.active i,
.tabs .nav-link.active h4 {
  color: #ffffff;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .tabs .tab-pane img {
    height: auto;
    object-fit: contain;
  }
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  cursor: pointer;
  border: 1px solid rgba(11, 47, 69, 0.06);
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.services .service-item > div::after {
  content: "Demander un devis →";
  display: block;
  margin-top: 16px;
  color: var(--accis-orange);
  font-weight: 700;
  font-size: 14px;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  border-color: color-mix(in srgb, var(--accis-orange), transparent 40%);
}

.services .service-item:hover > div::after {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .contact-callback-card {
  align-items: flex-start;
  padding-right: 26px;
  padding-left: 26px;
  text-align: left;
}

.contact .contact-callback-card i {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accis-navy);
}

.contact .contact-callback-card p {
  max-width: 420px;
  margin-bottom: 16px;
}

.contact-callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--accis-navy);
  background: #ffffff;
  border: 1px solid rgba(11, 47, 69, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11, 47, 69, 0.08);
  font-weight: 800;
}

.contact-callback-btn:hover {
  color: #111111;
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
  border-color: transparent;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Accis Plomberie mobile refinements
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .header {
    padding: 12px 0;
  }

  .header .logo h1 {
    font-size: 24px;
    line-height: 1.1;
    white-space: normal;
  }

  .header .logo span {
    font-size: 24px;
  }

  .hero {
    min-height: 680px;
    padding: 96px 0 64px;
    text-align: left;
  }

  .hero .col-lg-6 {
    max-width: 680px;
  }

  .hero h2 {
    max-width: 620px;
    font-size: 40px;
    line-height: 1.08;
  }

  .hero p {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.55;
  }

  .tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .tabs .nav-tabs .nav-item {
    flex: 0 0 210px;
    width: 210px;
    max-width: 210px;
  }

  .pricing .pricing-item {
    padding: 38px 28px;
  }

  .pricing .featured {
    margin: 18px 0;
  }

  .contact .info-item {
    min-height: 170px;
  }
}

@media (max-width: 575px) {
  section,
  .section {
    padding: 32px 0;
    scroll-margin-top: 72px;
  }

  .header .container-fluid {
    gap: 8px;
  }

  .header .logo {
    max-width: calc(100% - 132px);
  }

  .header .logo h1 {
    font-size: 18px;
    line-height: 1.15;
  }

  .header .logo span {
    font-size: 18px;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 4px;
    padding: 7px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-nav-toggle {
    margin-right: 0;
  }

  .navmenu ul {
    inset: 58px 12px 18px 12px;
  }

  .hero {
    min-height: 640px;
    padding: 92px 0 48px;
  }

  .hero:before {
    background: color-mix(in srgb, var(--background-color), transparent 18%);
  }

  .hero h2 {
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero .d-flex.mt-4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero .btn-get-started {
    width: 100%;
    max-width: 310px;
    text-align: center;
    padding: 12px 20px;
  }

  .hero .btn-watch-video {
    margin-left: 0;
  }

  .section-title {
    padding-bottom: 34px;
  }

  .section-title p {
    font-size: 28px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .about .content {
    text-align: left;
  }

  .stats .stats-item {
    padding: 16px 0 28px;
  }

  .tabs .nav-tabs .nav-link {
    min-height: 92px;
    padding: 16px 10px;
  }

  .tabs .nav-tabs .nav-item {
    flex-basis: 176px;
    width: 176px;
    max-width: 176px;
  }

  .tabs .tab-pane h3 {
    font-size: 24px;
    line-height: 1.18;
  }

  .services .service-item {
    padding: 24px;
  }

  .services .service-item .icon {
    margin-right: 18px;
  }

  .portfolio .portfolio-filters li {
    margin: 0 4px 8px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .pricing .pricing-item {
    padding: 32px 22px;
  }

  .pricing h4 {
    font-size: 30px;
    line-height: 1.15;
  }

  .pricing h4 span {
    font-size: 20px;
  }

  .pricing ul li {
    align-items: flex-start;
  }

  .faq .faq-container .faq-item {
    padding: 18px 44px 18px 18px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  .team .team-member .member-info h4 {
    font-size: 18px;
  }

  .contact .info-item {
    min-height: auto;
    padding: 24px 18px;
  }

  .contact .info-item p {
    overflow-wrap: anywhere;
  }

  .contact .php-email-form {
    padding: 22px 18px;
  }

  .footer .footer-about .logo span {
    font-size: 22px;
    line-height: 1.15;
  }

  .footer .footer-about .logo .footer-logo-img {
    width: 170px;
    max-height: 58px;
  }

  .footer .footer-about .logo {
    margin-bottom: 14px;
  }
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* SEO heading alignment */
.section-title h1 {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
}

.hero h1 span {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .section-title h1 {
    font-size: 25px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }
}

/* Header logo neutral SEO element */
.header .logo .sitename {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 991px) {
  .header .logo .sitename {
    font-size: 24px;
    line-height: 1.1;
  }
}

@media (max-width: 575px) {
  .header .logo .sitename {
    font-size: 19px;
    line-height: 1.15;
  }
}

/* Accis brand logo */
.header .logo .site-logo-img {
  width: clamp(132px, 14vw, 190px);
  max-height: 56px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .header .logo .site-logo-img {
    width: 150px;
    max-height: 48px;
  }
}

@media (max-width: 575px) {
  .header .logo .site-logo-img {
    width: 124px;
    max-height: 42px;
  }
}

/* Test couleurs logo Accis */
:root {
  --accis-blue: #0079b8;
  --accis-cyan: #16afd0;
  --accis-gold: #f6c21a;
  --accis-orange: #f47a22;
  --accis-navy: #0b2f45;
  --background-color: #ffffff;
  --default-color: #3f4c55;
  --heading-color: var(--accis-navy);
  --accent-color: var(--accis-blue);
  --nav-color: var(--accis-navy);
  --nav-hover-color: var(--accis-orange);
  --nav-dropdown-hover-color: var(--accis-orange);
}

.light-background {
  --background-color: #f4f9fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--accis-navy);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #123f59;
  --contrast-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus,
.hero .btn-get-started,
.call-to-action .cta-btn,
.about .about-btn,
.pricing .buy-btn,
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
  color: #111111;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(244, 122, 34, 0.22);
}

.header .btn-getstarted:hover,
.hero .btn-get-started:hover,
.call-to-action .cta-btn:hover,
.about .about-btn:hover,
.pricing .buy-btn:hover,
.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
  color: #ffffff;
}

.features .nav-link.active,
.features .nav-link:hover,
.services .service-item:hover .icon,
.stats .stats-item i,
.section-title h2:after {
  color: var(--accis-blue);
  border-color: var(--accis-blue);
}

.services .service-item .icon,
.icon-box i,
.footer .social-links a:hover {
  color: var(--accis-blue);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accis-orange);
}

/* Before / After comparison */
.before-after-showcase {
  margin: 0 0 54px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, #f4f9fb 0%, #ffffff 58%, rgba(246, 194, 26, 0.12) 100%);
  border: 1px solid rgba(0, 121, 184, 0.12);
  border-radius: 8px;
}

.before-after-showcase .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accis-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.before-after-showcase h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 40px);
}

.before-after-showcase p {
  margin: 0;
  color: #52616b;
}

.before-after-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  color: #111111;
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(244, 122, 34, 0.18);
}

.before-after-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
}

.before-after-card {
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 47, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(11, 47, 69, 0.08);
}

.ba-slider {
  --position: 50%;
  position: relative;
  height: clamp(280px, 34vw, 440px);
  overflow: hidden;
  background: #dce7ed;
  touch-action: pan-y;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--position));
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(11, 47, 69, 0.82);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ba-label-before {
  left: 16px;
}

.ba-label-after {
  right: 16px;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), #ffffff 18%, #ffffff 82%, rgba(255, 255, 255, 0.15));
  transform: translateX(-2px);
  pointer-events: none;
}

.ba-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 58px;
  height: 42px;
  color: var(--accis-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(11, 47, 69, 0.28);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.ba-divider span:before,
.ba-divider span:after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(11, 47, 69, 0.16);
}

.ba-divider span:before {
  order: 2;
}

.ba-divider span i:first-child {
  order: 1;
}

.ba-divider span i:last-child {
  order: 3;
}

.ba-divider i {
  font-size: 17px;
  line-height: 1;
}

.ba-slider input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-copy {
  padding: 22px 24px 24px;
}

.before-after-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.home-before-after {
  margin-top: clamp(26px, 4vw, 46px);
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(135deg, #f4f9fb 0%, #ffffff 60%, rgba(246, 194, 26, 0.12) 100%);
  border: 1px solid rgba(0, 121, 184, 0.12);
  border-radius: 8px;
}

.home-before-after-heading {
  margin-bottom: 22px;
  text-align: center;
}

.home-before-after-heading h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}

.home-before-after .ba-slider {
  height: 340px;
}

.home-before-after-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.home-before-after-action .before-after-cta {
  gap: 8px;
}

.avis-source-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.google-review-summary {
  display: flex;
  justify-content: center;
}

.google-review-card {
  width: min(100%, 680px);
  padding: clamp(28px, 4vw, 46px);
  text-align: center;
  background: var(--surface-color);
  border: 1px solid rgba(0, 121, 184, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(11, 47, 69, 0.08);
}

.google-review-card .google-icon {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 42px;
}

.google-review-score {
  display: block;
  color: var(--heading-color);
  font-size: clamp(54px, 8vw, 86px);
  font-weight: 900;
  line-height: 1;
}

.google-review-card .stars {
  margin: 14px 0 16px;
  color: #ffc107;
  font-size: 22px;
}

.google-review-card h3 {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.google-review-card p {
  max-width: 520px;
  margin: 0 auto;
}

.avis-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--accis-blue);
  border: 1px solid rgba(0, 121, 184, 0.22);
  border-radius: 999px;
  font-weight: 800;
}

.avis-secondary-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
  border-color: transparent;
}

.service-tab-cta {
  margin-top: 8px;
}

@media (max-width: 575px) {
  .before-after-showcase {
    padding: 20px;
    margin-bottom: 36px;
  }

  .before-after-cta {
    width: 100%;
  }

  .ba-slider {
    height: 300px;
  }

  .before-after-copy {
    padding: 18px;
  }

  .home-before-after {
    padding: 16px;
  }

  .home-before-after .ba-slider {
    height: 300px;
  }
}

.portfolio .portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Interactive bento gallery */
.interactive-bento-gallery {
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(0, 121, 184, 0.08), rgba(255, 255, 255, 0.96) 44%, rgba(244, 122, 34, 0.1)),
    #ffffff;
  border: 1px solid rgba(0, 121, 184, 0.12);
  border-radius: 8px;
}

.bento-gallery-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.bento-gallery-heading .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accis-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bento-gallery-heading h2 {
  margin-bottom: 10px;
  color: var(--accis-navy);
  font-size: clamp(26px, 3vw, 42px);
}

.bento-gallery-heading p {
  margin: 0;
  color: #52616b;
}

.bento-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bento-gallery-grid .bento-gallery-item {
  aspect-ratio: 4 / 3;
  grid-row: auto !important;
  grid-column: auto !important;
}

.bento-gallery-item {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: #0b2f45;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(11, 47, 69, 0.14);
  cursor: pointer;
  isolation: isolate;
}

.bento-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.bento-gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.72));
  opacity: .92;
}

.bento-gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  gap: 2px;
  text-align: left;
}

.bento-gallery-item strong {
  font-size: 15px;
  line-height: 1.15;
}

.bento-gallery-item small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.bento-gallery-item::after,
.bento-gallery-item span {
  display: none;
}

.bento-gallery-item:hover img,
.bento-gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.bento-gallery-item:focus-visible {
  outline: 3px solid var(--accis-gold);
  outline-offset: 3px;
}

.bento-tall {
  grid-row: span 3;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
}

.bento-gallery-modal.is-open {
  display: flex;
}

.bento-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 28, 0.72);
  border: 0;
  backdrop-filter: blur(12px);
}

.bento-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(760px, 92vh);
  padding: clamp(10px, 2vw, 16px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.bento-modal-panel figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0b2f45;
  border-radius: 8px;
}

.bento-modal-panel figure > img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}

.bento-modal-panel figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: clamp(16px, 3vw, 26px);
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.bento-modal-panel figcaption strong {
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.1;
}

.bento-modal-panel figcaption span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.bento-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--accis-navy);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.bento-modal-dock {
  display: flex;
  gap: 8px;
  max-width: 100%;
  padding: 12px 4px 0;
  overflow-x: auto;
}

.bento-dock-thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: #0b2f45;
  border: 2px solid transparent;
  border-radius: 8px;
}

.bento-dock-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-dock-thumb.is-active {
  border-color: var(--accis-gold);
  box-shadow: 0 0 0 3px rgba(246, 194, 26, 0.22);
}

.bento-modal-open {
  overflow: hidden;
}

/* About page boosted content */
.about-page-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 150px 0 86px;
  background:
    linear-gradient(135deg, rgba(11, 47, 69, 0.96), rgba(0, 121, 184, 0.78)),
    url("../img/hero-accis.jpg") center right / cover;
  overflow: hidden;
}

.about-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 194, 26, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(11, 47, 69, 0.92) 0%, rgba(11, 47, 69, 0.68) 48%, rgba(11, 47, 69, 0.2) 100%);
}

.about-page-hero .container {
  z-index: 1;
}

.about-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accis-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-kicker.light {
  color: var(--accis-orange);
}

.about-page-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
}

.about-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.about-btn,
.about-btn:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #111111;
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(244, 122, 34, 0.24);
  font-weight: 800;
}

.about-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
}

.about-phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffffff;
  font-weight: 800;
}

.about-phone i {
  color: var(--accis-cyan);
  font-size: 24px;
}

.about-proof-card {
  padding: clamp(24px, 4vw, 38px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
}

.about-proof-card > span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.about-proof-card > strong {
  display: block;
  margin: 10px 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.about-proof-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.about-proof-grid div {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.about-proof-grid b,
.about-proof-grid small {
  display: block;
}

.about-proof-grid b {
  color: var(--accis-gold);
  font-size: 22px;
}

.about-proof-grid small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.25;
}

.about-page-section {
  padding: 78px 0;
}

.about-info-card,
.about-hours-card,
.about-cta-panel {
  height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid rgba(0, 121, 184, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11, 47, 69, 0.08);
}

.about-info-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
  border-radius: 999px;
  font-size: 22px;
}

.about-info-card h2,
.about-hours-card h2,
.about-cta-panel h2,
.about-page-split h2 {
  margin-bottom: 14px;
  color: var(--accis-navy);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.about-info-card p,
.about-page-split p,
.about-cta-panel p {
  color: #52616b;
  line-height: 1.7;
}

.about-info-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.about-info-card li {
  position: relative;
  padding-left: 22px;
  color: var(--accis-navy);
  font-weight: 700;
}

.about-info-card li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accis-orange);
  border-radius: 999px;
}

.about-page-split {
  background: linear-gradient(135deg, #f4f9fb, #ffffff);
}

.about-feature-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 47, 69, 0.16);
}

.about-check-list {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.about-check-list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--accis-navy);
  font-weight: 700;
}

.about-check-list i {
  flex: 0 0 auto;
  color: var(--accis-orange);
  font-size: 20px;
}

.about-hours-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.about-hours-grid div {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(11, 47, 69, 0.1);
}

.about-hours-grid strong {
  color: var(--accis-navy);
}

.about-hours-grid span {
  color: #52616b;
  text-align: right;
}

.about-cta-panel {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 47, 69, 0.96), rgba(0, 121, 184, 0.9));
}

.about-cta-panel h2,
.about-cta-panel p {
  color: #ffffff;
}

.about-secondary-link {
  display: inline-flex;
  margin-left: 16px;
  color: var(--accis-gold);
  font-weight: 800;
}

@media (max-width: 991px) {
  .about-page-hero {
    min-height: auto;
    padding: 126px 0 58px;
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .about-page-section {
    padding: 54px 0;
  }
}

@media (max-width: 575px) {
  .about-page-hero h1 {
    font-size: 36px;
  }

  .about-page-hero p {
    font-size: 16px;
  }

  .about-hero-actions,
  .about-secondary-link {
    display: grid;
    width: 100%;
    margin-left: 0;
  }

  .about-hours-grid div {
    display: grid;
  }

  .about-hours-grid span {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .bento-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .interactive-bento-gallery {
    padding: 18px;
  }

  .bento-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-gallery-grid .bento-gallery-item {
    aspect-ratio: 1 / 1;
  }

  .bento-modal-panel figure > img {
    max-height: 62vh;
  }
}

/* Header overlay on homepage hero */
.index-page .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  --background-color: transparent;
  box-shadow: none;
}

.index-page .hero {
  min-height: 100vh;
  padding-top: 130px;
}

.index-page .navmenu a,
.index-page .navmenu a:focus {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(11, 47, 69, 0.28);
}

.index-page .navmenu a:hover,
.index-page .navmenu .active,
.index-page .navmenu .active:focus {
  color: var(--accis-gold);
}

.index-page .mobile-nav-toggle {
  color: #ffffff;
}

.scrolled.index-page .header {
  position: fixed;
  background: rgba(255, 255, 255, 0.94);
  --background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(11, 47, 69, 0.10);
  backdrop-filter: blur(12px);
}

.scrolled.index-page .navmenu a,
.scrolled.index-page .navmenu a:focus {
  color: var(--accis-navy);
  text-shadow: none;
}

.scrolled.index-page .navmenu a:hover,
.scrolled.index-page .navmenu .active,
.scrolled.index-page .navmenu .active:focus {
  color: var(--accis-orange);
}

.scrolled.index-page .mobile-nav-toggle {
  color: var(--accis-navy);
}

@media (max-width: 1199px) {
  .index-page .navmenu ul {
    text-shadow: none;
  }

  .index-page .navmenu a,
  .index-page .navmenu a:focus {
    color: var(--nav-dropdown-color);
    text-shadow: none;
  }
}

@media (max-width: 575px) {
  .index-page .hero {
    padding-top: 112px;
  }
}

/* Mobile hero polish */
@media (max-width: 991px) {
  .index-page .header {
    padding: 12px 0;
  }

  .index-page .header .logo .site-logo-img {
    width: 142px;
    max-height: 46px;
  }

  .index-page .hero {
    min-height: 100svh;
    padding: 118px 0 42px;
    align-items: flex-end;
    text-align: left;
  }

  .index-page .hero img {
    object-position: 68% center;
  }

  .index-page .hero:before {
    background:
      linear-gradient(180deg, rgba(11, 47, 69, 0.12) 0%, rgba(11, 47, 69, 0.46) 48%, rgba(11, 47, 69, 0.88) 100%),
      linear-gradient(90deg, rgba(11, 47, 69, 0.72) 0%, rgba(11, 47, 69, 0.22) 64%, rgba(11, 47, 69, 0.1) 100%);
  }

  .index-page .hero .container {
    width: 100%;
  }

  .index-page .hero .col-lg-6 {
    max-width: 560px;
  }

  .index-page .hero h1 {
    max-width: 560px;
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1.02;
  }

  .index-page .hero p {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.48;
  }
}

@media (max-width: 575px) {
  .index-page .header .container-fluid {
    align-items: center;
  }

  .index-page .header .logo {
    max-width: 150px;
  }

  .index-page .header .logo .site-logo-img {
    width: 128px;
    max-height: 40px;
  }

  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus {
    padding: 7px 10px;
    font-size: 11px;
  }

  .index-page .hero {
    min-height: 100svh;
    padding: 104px 0 34px;
  }

  .index-page .hero img {
    object-position: 72% center;
  }

  .index-page .hero .row {
    align-items: flex-end;
  }

  .index-page .hero h1 {
    max-width: 340px;
    font-size: clamp(30px, 10.5vw, 42px);
    line-height: 1.04;
  }

  .index-page .hero p {
    max-width: 340px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.48;
  }

  .index-page .hero .d-flex.mt-4 {
    width: 100%;
    gap: 12px;
  }

  .index-page .hero .btn-get-started {
    width: 100%;
    max-width: none;
  }

  .index-page .hero .btn-watch-video {
    color: #ffffff;
  }
}

/* Liquid glass fixed header */
.header,
.index-page .header,
.scrolled .header,
.scrolled.index-page .header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: transparent;
  --background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

.header .container-fluid {
  width: 100%;
  max-width: none;
  padding-right: clamp(16px, 3vw, 38px);
  padding-left: clamp(16px, 3vw, 38px);
  justify-content: center;
  pointer-events: none;
}

.header .logo {
  position: fixed;
  top: 4px;
  left: clamp(16px, 3vw, 38px);
  z-index: 1000;
  margin: 0;
  pointer-events: auto;
  filter: drop-shadow(0 10px 20px rgba(11, 47, 69, 0.14));
}

.header .logo .site-logo-img,
.index-page .header .logo .site-logo-img {
  width: auto;
  height: clamp(56px, 4.6vw, 64px);
  max-height: none;
}

.header .navmenu {
  pointer-events: auto;
}

.header-cta-short {
  display: none;
}

.header .btn-getstarted,
.header .btn-getstarted:focus,
.index-page .header .btn-getstarted,
.index-page .header .btn-getstarted:focus {
  position: fixed;
  top: 12px;
  right: clamp(16px, 3vw, 38px);
  z-index: 1000;
  margin: 0;
  padding: 11px 18px;
  border-radius: 999px;
  pointer-events: auto;
  box-shadow: 0 14px 30px rgba(244, 122, 34, 0.24);
}

.hero .btn-get-started,
.hero .btn-get-started:focus,
.before-after-cta,
.before-after-cta:focus,
.about-btn,
.about-btn:focus,
.pricing .buy-btn,
.pricing .buy-btn:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: #111111;
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(244, 122, 34, 0.24);
  font-weight: 700;
  line-height: 1;
}

.hero .btn-get-started:hover,
.before-after-cta:hover,
.about-btn:hover,
.pricing .buy-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
}

.hero .btn-callback-hero,
.hero .btn-callback-hero:focus,
.callback-direct-btn,
.callback-direct-btn:focus {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 121, 184, 0.24);
  font-weight: 800;
  line-height: 1;
}

.hero .btn-callback-hero {
  margin-left: 12px;
}

.hero .btn-callback-hero i,
.callback-direct-btn i {
  font-size: 18px;
  line-height: 1;
}

.hero .btn-callback-hero:hover,
.callback-direct-btn:hover {
  color: #111111;
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
}

.callback-direct-btn {
  width: 100%;
}

.hero .btn-get-started + .btn-callback-hero {
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .hero .d-flex:has(.btn-callback-hero) {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero .btn-callback-hero {
    width: 100%;
    margin-left: 0;
  }
}

.quote-section {
  background: linear-gradient(135deg, #f4f9fb 0%, #ffffff 58%, rgba(22, 175, 208, 0.12) 100%);
}

.quote-section .section-title p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.quote-side,
.quote-form {
  height: 100%;
  border: 1px solid rgba(0, 121, 184, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(11, 47, 69, 0.08);
}

.quote-side {
  padding: clamp(24px, 3vw, 34px);
}

.quote-side h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.quote-side p {
  margin-bottom: 22px;
}

.quote-side ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.quote-side li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
}

.quote-side li i {
  color: var(--accis-orange);
}

.quote-phone,
.quote-phone:focus {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--heading-color);
  font-weight: 800;
}

.quote-form {
  padding: clamp(20px, 3vw, 34px);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-field-wide {
  grid-column: 1 / -1;
}

.quote-field label,
.quote-label {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 700;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--default-color);
  background: #ffffff;
  border: 1px solid rgba(63, 76, 85, 0.22);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-field textarea {
  resize: vertical;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--accis-blue);
  box-shadow: 0 0 0 4px rgba(0, 121, 184, 0.11);
}

.quote-field input[type="file"] {
  padding: 9px 12px;
}

.quote-field small {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.service-choice-select {
  position: relative;
}

.service-choice-help {
  display: block;
}

.service-choice-toggle {
  position: relative;
  width: 100%;
  min-height: 46px;
  padding: 11px 42px 11px 13px;
  color: var(--default-color);
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(63, 76, 85, 0.22);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-choice-toggle::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 18%);
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 18%);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.service-choice-select.is-open .service-choice-toggle,
.service-choice-toggle:focus {
  border-color: var(--accis-blue);
  box-shadow: 0 0 0 4px rgba(0, 121, 184, 0.11);
}

.service-choice-select.is-open .service-choice-toggle::after {
  transform: translateY(-25%) rotate(225deg);
}

.service-choice-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  display: none;
  max-height: 260px;
  padding: 8px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(63, 76, 85, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(11, 47, 69, 0.16);
}

.service-choice-select.is-open .service-choice-menu {
  display: grid;
  gap: 4px;
}

.service-choice-menu label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 8px 9px;
  color: var(--heading-color);
  border-radius: 6px;
  cursor: pointer;
}

.service-choice-menu label:hover,
.service-choice-menu label:has(input:checked) {
  background: rgba(0, 121, 184, 0.08);
}

.service-choice-menu input {
  width: auto;
  min-height: auto;
  margin: 0;
  accent-color: var(--accis-blue);
}

.quote-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.quote-consent input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.quote-submit {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 24px;
}

.quote-submit .sent-message {
  display: none;
  color: #059652;
  font-weight: 700;
}

.quote-form button[type="submit"],
.quote-form button[type="submit"]:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  color: #111111;
  background: linear-gradient(135deg, var(--accis-orange), var(--accis-gold));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(244, 122, 34, 0.24);
  font-weight: 800;
}

.quote-form button[type="submit"]:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
}

.quote-secondary-link {
  color: var(--heading-color);
  font-weight: 800;
}

.home-quote {
  padding-top: 64px;
}

@media (max-width: 991px) {
  .quote-form-grid,
  .quote-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .service-choice-menu {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .quote-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form button[type="submit"],
  .quote-secondary-link {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .header .navmenu ul {
    gap: 2px;
    padding: 8px;
    margin-top: 12px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32)),
      rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    box-shadow:
      0 18px 46px rgba(11, 47, 69, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 0 -18px 34px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }

  .header .navmenu a,
  .header .navmenu a:focus,
  .index-page .navmenu a,
  .index-page .navmenu a:focus,
  .scrolled.index-page .navmenu a,
  .scrolled.index-page .navmenu a:focus {
    min-height: 44px;
    padding: 0 15px;
    color: var(--accis-navy);
    font-size: 15px;
    font-weight: 600;
    text-shadow: none;
    border-radius: 999px;
  }

  .header .navmenu ul > li:first-child > a,
  .header .navmenu ul > li:last-child > a {
    padding-left: 17px;
    padding-right: 17px;
  }

  .header .navmenu a:hover,
  .header .navmenu .active,
  .header .navmenu .active:focus,
  .index-page .navmenu a:hover,
  .index-page .navmenu .active,
  .index-page .navmenu .active:focus,
  .scrolled.index-page .navmenu a:hover,
  .scrolled.index-page .navmenu .active,
  .scrolled.index-page .navmenu .active:focus {
    color: var(--accis-navy);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  }
}

@supports selector(.main:has(#hero)) {
  .main:not(:has(#hero)) {
    padding-top: 86px;
  }
}

@media (max-width: 1199px) {
  .header,
  .index-page .header,
  .scrolled.index-page .header {
    padding: 12px 0;
  }

  .header .container-fluid {
    justify-content: flex-end;
  }

  .header .logo {
    top: 12px;
  }

  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img {
    width: 132px;
    max-height: 44px;
  }

  .mobile-nav-toggle,
  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: clamp(16px, 3vw, 38px);
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: var(--accis-navy);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
      rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(11, 47, 69, 0.16);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    pointer-events: auto;
  }

  .navmenu ul {
    position: fixed;
    inset: 76px 16px auto 16px;
    max-height: calc(100vh - 100px);
    padding: 14px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
      rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(11, 47, 69, 0.18);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }

  .navmenu a,
  .navmenu a:focus,
  .index-page .navmenu a,
  .index-page .navmenu a:focus {
    color: var(--accis-navy);
    border-radius: 12px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: clamp(16px, 3vw, 38px);
    color: var(--accis-navy);
  }

  .mobile-nav-active .navmenu {
    background: rgba(11, 47, 69, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

@media (max-width: 575px) {
  .header .container-fluid,
  .index-page .header .container-fluid {
    align-items: center;
  }

  .header .logo,
  .index-page .header .logo {
    left: 12px;
    max-width: none;
  }

  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img {
    width: 112px;
    max-height: 38px;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus,
  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus {
    top: 14px;
    right: 14px;
    width: 78px;
    max-width: none;
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .header-cta-long {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .mobile-nav-toggle,
  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active .mobile-nav-toggle {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active.index-page .mobile-nav-toggle {
    right: 104px;
  }

  @supports selector(.main:has(#hero)) {
    .main:not(:has(#hero)) {
      padding-top: 74px;
    }
  }
}

/* Accis mobile final polish */
@media (max-width: 575px) {
  body {
    overflow-x: hidden;
  }

  section,
  .section {
    padding: 44px 0;
  }

  .container,
  .container-fluid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .header,
  .index-page .header,
  .scrolled.index-page .header {
    padding: 10px 0;
  }

  .header .logo,
  .index-page .header .logo {
    top: 11px;
    left: 14px;
  }

  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img {
    width: 118px;
    max-height: 40px;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus,
  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus {
    top: 13px;
    right: 14px;
    width: 78px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(244, 122, 34, 0.24);
  }

  .mobile-nav-toggle,
  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active .mobile-nav-toggle {
    top: 13px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active.index-page .mobile-nav-toggle {
    right: 104px;
  }

  .navmenu ul {
    inset: 68px 12px auto 12px;
    max-height: calc(100svh - 88px);
    padding: 10px;
    border-radius: 16px;
  }

  .navmenu a,
  .navmenu a:focus,
  .index-page .navmenu a,
  .index-page .navmenu a:focus {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .index-page .hero {
    min-height: 100svh;
    padding: 104px 0 28px;
    text-align: left;
  }

  .index-page .hero img {
    object-position: 74% center;
  }

  .index-page .hero:before {
    background:
      linear-gradient(180deg, rgba(11, 47, 69, 0.04) 0%, rgba(11, 47, 69, 0.34) 38%, rgba(11, 47, 69, 0.92) 100%),
      linear-gradient(90deg, rgba(11, 47, 69, 0.76) 0%, rgba(11, 47, 69, 0.28) 68%, rgba(11, 47, 69, 0.12) 100%);
  }

  .index-page .hero .container {
    display: flex;
    align-items: flex-end;
    min-height: 0;
  }

  .index-page .hero .row,
  .index-page .hero .col-lg-6 {
    width: 100%;
  }

  .index-page .hero h1 {
    max-width: 360px;
    margin-bottom: 0;
    font-size: clamp(32px, 10.2vw, 43px);
    line-height: 1.02;
    text-wrap: balance;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
  }

  .index-page .hero p {
    max-width: 350px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15.5px;
    line-height: 1.5;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
  }

  .index-page .hero .d-flex.mt-4 {
    display: grid !important;
    width: min(100%, 360px);
    gap: 10px;
    margin-top: 20px !important;
  }

  .hero .btn-get-started,
  .hero .btn-get-started:focus,
  .hero .btn-callback-hero,
  .hero .btn-callback-hero:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-left: 0;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
  }

  .hero .btn-callback-hero {
    gap: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accis-blue), var(--accis-cyan));
    box-shadow: 0 14px 32px rgba(0, 121, 184, 0.28);
  }

  .hero .btn-callback-hero i {
    font-size: 17px;
  }

  .stats .stats-item,
  .services .service-item,
  .features .tab-pane,
  .before-after-showcase,
  .quote-card,
  .footer .footer-about {
    border-radius: 8px;
  }

  .stats .stats-item {
    padding: 20px 14px;
  }

  .stats .stats-item span {
    font-size: 30px;
  }

  .features .nav-link {
    min-height: 54px;
    padding: 14px;
  }

  .tabs .nav-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-right: 0;
    margin-left: 0;
  }

  .tabs .nav-tabs .nav-item {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .tabs .nav-link,
  .tabs .nav-link:focus {
    min-height: 92px;
    padding: 13px 8px;
    border-radius: 8px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    box-shadow: 0 12px 26px rgba(11, 47, 69, 0.08);
  }

  .tabs .nav-link i {
    padding-right: 0;
    font-size: 24px;
  }

  .tabs .nav-link h4,
  .tabs .nav-link h4.d-none {
    display: block !important;
    max-width: 100%;
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-wrap: balance;
  }

  .before-after-showcase {
    padding: 22px 16px;
  }

  .avis-source-actions {
    align-items: stretch;
    gap: 10px;
  }

  .avis-source-actions .before-after-cta,
  .avis-source-actions .avis-secondary-link {
    width: 100%;
  }

  .ba-slider {
    height: 300px;
  }

  .quote-card {
    padding: 22px 16px;
  }

  .quote-card input,
  .quote-card select,
  .quote-card textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .quote-card button[type=submit] {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 390px) {
  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img {
    width: 106px;
  }

  .mobile-nav-toggle,
  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active .mobile-nav-toggle {
    right: 14px;
  }

  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active.index-page .mobile-nav-toggle {
    right: 112px;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus,
  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 10.5px;
  }

  .index-page .hero h1 {
    font-size: clamp(30px, 10.5vw, 39px);
  }
}

@media (max-width: 360px) {
  .index-page .hero {
    padding-bottom: 22px;
  }

  .index-page .hero .container {
    min-height: 0;
  }

  .index-page .hero h1 {
    font-size: 31px;
    line-height: 1.03;
  }

  .index-page .hero p {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .index-page .hero .d-flex.mt-4 {
    gap: 9px;
    margin-top: 17px !important;
  }

  .hero .btn-get-started,
  .hero .btn-get-started:focus,
  .hero .btn-callback-hero,
  .hero .btn-callback-hero:focus {
    min-height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

/* Locked hero header: logo must not shift while scrolling */
.header .logo,
.index-page .header .logo,
.scrolled .header .logo,
.scrolled.index-page .header .logo {
  position: fixed !important;
  top: 10px !important;
  left: clamp(16px, 3vw, 38px) !important;
  transform: none !important;
  transition: none !important;
}

.header .logo .site-logo-img,
.index-page .header .logo .site-logo-img,
.scrolled .header .logo .site-logo-img,
.scrolled.index-page .header .logo .site-logo-img {
  transform: none !important;
  transition: none !important;
}

@media (max-width: 575px) {
  .header .logo,
  .index-page .header .logo,
  .scrolled .header .logo,
  .scrolled.index-page .header .logo {
    top: 14px !important;
    left: 14px !important;
  }

  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img,
  .scrolled .header .logo .site-logo-img,
  .scrolled.index-page .header .logo .site-logo-img {
    width: 112px;
    max-height: 38px;
  }
}

@media (max-width: 390px) {
  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img,
  .scrolled .header .logo .site-logo-img,
  .scrolled.index-page .header .logo .site-logo-img {
    width: 104px;
  }

  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active.index-page .mobile-nav-toggle {
    right: 104px;
  }
}

/* Homepage hero header is locked to the hero, not sticky while scrolling */
.index-page .header,
.scrolled.index-page .header {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.index-page .header .logo,
.scrolled.index-page .header .logo {
  position: absolute !important;
  top: 10px !important;
  left: clamp(16px, 3vw, 38px) !important;
}

.index-page .header .btn-getstarted,
.index-page .header .btn-getstarted:focus,
.scrolled.index-page .header .btn-getstarted {
  position: absolute !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 22px !important;
  right: clamp(16px, 3vw, 38px) !important;
  line-height: 1 !important;
}

.index-page .mobile-nav-toggle,
.scrolled.index-page .mobile-nav-toggle {
  position: absolute !important;
  top: 16px !important;
  right: 136px !important;
}

@media (max-width: 575px) {
  .index-page .header .logo,
  .scrolled.index-page .header .logo {
    top: 14px !important;
    left: 14px !important;
  }

  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus,
  .scrolled.index-page .header .btn-getstarted,
  .scrolled.index-page .header .btn-getstarted:focus {
    top: 13px !important;
    right: 14px !important;
  }

  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle {
    top: 13px !important;
    right: 104px !important;
  }
}

/* Final mobile QA overrides */
@media (max-width: 1199px) {
  .mobile-nav-toggle,
  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle,
  .mobile-nav-active .mobile-nav-toggle,
  .mobile-nav-active.index-page .mobile-nav-toggle {
    position: fixed !important;
    top: 18px !important;
    left: auto !important;
    right: 16px !important;
    z-index: 10001 !important;
  }

  .header .logo,
  .index-page .header .logo,
  .scrolled .header .logo,
  .scrolled.index-page .header .logo {
    left: 16px !important;
    top: 15px !important;
  }

  .navmenu ul {
    position: fixed !important;
    inset: 78px 14px auto 14px !important;
    max-height: calc(100dvh - 96px) !important;
    overflow-y: auto !important;
  }

  .mobile-nav-active .navmenu {
    background: rgba(11, 47, 69, 0.28) !important;
  }
}

@media (max-width: 1199px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus,
  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus,
  .scrolled.index-page .header .btn-getstarted,
  .scrolled.index-page .header .btn-getstarted:focus {
    position: fixed !important;
    top: 18px !important;
    right: 72px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 14px 34px rgba(11, 47, 69, 0.16);
    z-index: 10000 !important;
  }

  .header-cta-long {
    display: inline !important;
  }

  .header-cta-short {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus,
  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus,
  .scrolled.index-page .header .btn-getstarted,
  .scrolled.index-page .header .btn-getstarted:focus {
    right: 68px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 767px) {
  section,
  .section {
    padding: 44px 0;
    overflow: visible;
  }

  .main > section:first-child,
  .main > .section:first-child {
    padding-top: 72px;
  }

  .section-bg {
    padding: 72px 0 54px;
    overflow: hidden;
  }

  .section-bg:before {
    top: 0;
    bottom: 0;
    transform: none;
  }

  .section-title {
    padding-bottom: 34px;
  }

  .section-title h2 {
    font-size: 34px;
    line-height: 1.04;
    margin-bottom: 16px;
    padding-bottom: 18px;
  }

  .section-title h1 {
    font-size: 29px;
    line-height: 1.18;
  }

  .services .service-item {
    padding: 28px 22px;
  }

  .services .service-item.d-flex {
    gap: 18px;
  }

  .before-after-showcase {
    padding: 26px 18px;
  }

  .before-after-showcase h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .before-after-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img,
  .scrolled .header .logo .site-logo-img,
  .scrolled.index-page .header .logo .site-logo-img {
    width: 104px;
  }

  .section-title h2 {
    font-size: 31px;
  }

  .section-title h1 {
    font-size: 26px;
  }
}

.legal-page .legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page .legal-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(11, 47, 69, 0.08);
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 800;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.footer-legal-note {
  color: color-mix(in srgb, var(--contrast-color), transparent 22%);
  font-size: 14px;
}

.form-privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.form-privacy-consent input {
  margin-top: 3px;
}

.quote-consent a,
.form-privacy-consent a {
  font-weight: 700;
}

.hero-typed-line {
  min-height: 1.45em;
}

.hero-typed {
  color: var(--accent-color);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.hero-typed-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--accent-color);
  font-weight: 800;
  animation: heroTypedBlink 0.85s infinite;
}

@keyframes heroTypedBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 575px) {
  .hero-typed-line {
    min-height: 3.2em;
  }
}

/* Bouton "Devis gratuit" du header : graisse 700 (réellement chargée) pour un rendu net,
   cohérent avec le bouton "Devis gratuit" du hero (Roboto 700). Évite le faux-gras Roboto 900. */
.header .btn-getstarted,
.header .btn-getstarted:focus,
.index-page .header .btn-getstarted,
.index-page .header .btn-getstarted:focus,
.scrolled.index-page .header .btn-getstarted,
.scrolled.index-page .header .btn-getstarted:focus {
  font-weight: 700 !important;
}

/* Header mobile : logo à la bonne taille + bouton "Devis gratuit" qui respire */
@media (max-width: 575px) {
  .header .logo .site-logo-img,
  .index-page .header .logo .site-logo-img,
  .scrolled .header .logo .site-logo-img,
  .scrolled.index-page .header .logo .site-logo-img {
    width: auto !important;
    height: 52px !important;
    max-height: none !important;
  }

  .index-page .header .logo,
  .scrolled.index-page .header .logo {
    top: 12px !important;
  }

  .index-page .header .btn-getstarted,
  .index-page .header .btn-getstarted:focus,
  .scrolled.index-page .header .btn-getstarted,
  .scrolled.index-page .header .btn-getstarted:focus {
    top: 16px !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
  }

  .index-page .mobile-nav-toggle,
  .scrolled.index-page .mobile-nav-toggle {
    top: 16px !important;
  }
}

/* Espacement resserré sur mobile (override final, spécificité renforcée) */
@media (max-width: 575px) {
  section.section {
    padding: 28px 0;
  }

  .stats.section .stats-item {
    min-height: 0;
    padding: 18px 14px;
  }

  .stats.section .row.gy-4 {
    --bs-gutter-y: 14px;
  }

  .stats .row > [class*="col-"] {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center;
    gap: 14px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(11, 47, 69, 0.05);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(11, 47, 69, 0.08);
    padding: 14px 16px;
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .stats i {
    margin: 0 !important;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 22px;
    background: rgba(11, 47, 69, 0.05);
    border: 0;
    box-shadow: none;
  }

  .stats i.bi-geo-alt {
    background: rgba(224, 65, 58, 0.12);
  }

  .stats i.bi-shield-check {
    background: rgba(41, 163, 90, 0.12);
  }

  .stats i.bi-lightning-charge {
    background: rgba(242, 169, 29, 0.15);
  }

  .stats i.bi-google {
    background: rgba(66, 133, 244, 0.10);
  }

  .stats.section .stats-item {
    margin-top: 0;
    flex: 0 1 auto;
    padding: 0;
    min-height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .stats.section .stats-item:hover {
    transform: none;
    box-shadow: none;
  }

  .stats.section .stats-item span {
    font-size: 27px;
  }

  .stats.section .stats-item .stats-figure .stats-unit {
    font-size: 15px;
  }

  .stats.section .stats-item p {
    font-size: 13px;
    min-height: 0;
    justify-content: center;
  }
}

/* --------------------------------------------------------------
 # Ils nous font confiance (partenaires)
--------------------------------------------------------------- */
.partners.section {
  padding: 40px 0;
  background: #ffffff;
}

.partners-eyebrow {
  text-align: center;
  margin: 0 0 26px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 36px;
  max-width: 1080px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 106px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(11, 47, 69, 0.07);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(11, 47, 69, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

a.partner-item:hover,
a.partner-item:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(11, 47, 69, 0.15);
}

@media (max-width: 767px) {
  .partners.section {
    padding: 26px 0;
  }

  .partners-eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .partners-grid {
    gap: 16px;
  }

  .partner-item {
    width: 150px;
    height: 92px;
    padding: 12px 16px;
    border-radius: 14px;
  }
}
