/**
* Template Name: Dewi
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Inter", 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: #2d3748; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1a202c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0a7ea4; /* 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: #f7fafc; /* The default color of the main navmenu links */
  --nav-hover-color: #0d9488; /* 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: #2d3748; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d9488; /* 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: #f8fafc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f172a;
  --default-color: #f8fafc;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --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);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

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: var(--accent-color);
  box-shadow: 0 0 0 0 rgba(10, 126, 164, 0.4);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 126, 164, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(10, 126, 164, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 126, 164, 0);
  }
}

.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 {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  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: 80px;
  margin-right: 8px;
}

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 10px 28px;
  margin: 0 0 0 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 126, 164, 0.3);
}

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

  .header .cta-btn {
    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);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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 > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

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

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .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;
  }
}

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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: linear-gradient(
    135deg,
    #0d9488 0%,
    #0a7ea4 30%,
    #075e8a 62%,
    #0d1b2a 100%
  );
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture overlay — mirrors hero */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

.footer .footer-top,
.footer .copyright {
  position: relative;
  z-index: 2;
}

/* Wave divider sits at the very top */
.footer-wave {
  line-height: 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* Glow orbs */
.footer-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.footer-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.18) 0%,
    transparent 68%
  );
  bottom: -180px;
  left: -80px;
  animation: hero-float 10s ease-in-out infinite;
}

.footer-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(10, 126, 164, 0.16) 0%,
    transparent 68%
  );
  top: 20px;
  right: 5%;
  animation: hero-float 14s ease-in-out infinite reverse;
}

/* Spiral rings */
.footer-spiral {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 1;
}

.footer-spiral--bl {
  bottom: 0;
  left: 0;
}

.footer-spiral--tr {
  top: 0;
  right: 0;
}

.footer-spiral span {
  position: absolute;
  border-radius: 50%;
  display: block;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.footer-spiral span:nth-child(1) {
  width: 110px;
  height: 110px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.footer-spiral span:nth-child(2) {
  width: 230px;
  height: 230px;
  border: 1.5px dashed rgba(13, 148, 136, 0.45);
  animation: spiral-cw 50s linear infinite;
}
.footer-spiral span:nth-child(3) {
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-spiral span:nth-child(4) {
  width: 470px;
  height: 470px;
  border: 1.5px dashed rgba(10, 126, 164, 0.38);
  animation: spiral-ccw 70s linear infinite;
}
.footer-spiral span:nth-child(5) {
  width: 590px;
  height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-spiral span:nth-child(6) {
  width: 710px;
  height: 710px;
  border: 1px dashed rgba(13, 148, 136, 0.22);
  animation: spiral-cw 100s linear infinite;
}

.footer-spiral--tr span:nth-child(2) {
  animation-name: spiral-ccw;
}
.footer-spiral--tr span:nth-child(4) {
  animation-name: spiral-cw;
}
.footer-spiral--tr span:nth-child(6) {
  animation-name: spiral-ccw;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* Centred standalone logo row above footer columns */
.footer-top > .row:first-child .logo img {
  max-height: 62px;
}

.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: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.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: 15px;
  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: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgba(10, 126, 164, 0.3);
}

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

.scroll-top:hover {
  background-color: #076a8a;
  color: var(--contrast-color);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.4);
}

.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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

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

.section-title h2 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  text-align: center;
  display: block;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 3px;
  display: block;
  background: var(--accent-color);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
  text-align: center;
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 140px 0 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(
    135deg,
    #0d9488 0%,
    #0a7ea4 30%,
    #075e8a 62%,
    #0d1b2a 100%
  );
  overflow: hidden;
}

/* Dot-grid texture overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
}

/* Glow orb – top right */
.hero::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(10, 126, 164, 0.28) 0%,
    transparent 68%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.hero > img:not(.hero-bg-img) {
  display: none;
}

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

/* Floating decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(10, 126, 164, 0.16) 0%,
    transparent 70%
  );
  bottom: -140px;
  right: 8%;
  animation: hero-float 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.14) 0%,
    transparent 70%
  );
  top: 12%;
  right: 28%;
  animation: hero-float 12s ease-in-out infinite reverse;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.04);
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(10, 126, 164, 0.18);
  border: 1px solid rgba(10, 126, 164, 0.5);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
}

.hero h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero h3 {
  margin: 18px 0 0;
  font-size: 21px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  text-align: left;
  line-height: 1.55;
}

.hero p {
  color: rgba(255, 255, 255, 0.62);
  margin: 14px 0 0;
  font-size: 16px;
  text-align: left;
  max-width: 560px;
  line-height: 1.85;
}

/* CTA Buttons */
.hero-cta {
  margin-top: 34px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 22px rgba(10, 126, 164, 0.55);
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.55);
  color: #ffffff;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  text-decoration: none;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  max-width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.hero-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--heading-font);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 5px;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero h3 {
    font-size: 17px;
  }

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

  .hero-stats {
    gap: 16px;
    padding: 16px 20px;
    max-width: 100%;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    flex: 1;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-orb-1,
  .hero-orb-2 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Collage
--------------------------------------------------------------*/
.hero-collage {
  position: relative;
  padding: 16px;
}

.hero-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 195px 155px 145px;
  gap: 10px;
}

.hc-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hc-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* pharmacy: left column, spans top 2 rows */
.hc-item--tall {
  grid-row: span 2;
}

/* manufacturing: spans full bottom row */
.hc-item--wide {
  grid-column: span 2;
}

.hc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88);
}

.hc-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.hc-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(10, 30, 60, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/*--------------------------------------------------------------
# Hero Background Image (fade left → visible right)
--------------------------------------------------------------*/
.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 2;
  pointer-events: none;
  display: block;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 18%,
    rgba(0, 0, 0, 0.45) 42%,
    rgba(0, 0, 0, 0.8) 68%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 18%,
    rgba(0, 0, 0, 0.45) 42%,
    rgba(0, 0, 0, 0.8) 68%,
    black 100%
  );
  opacity: 0.45;
}

@media (max-width: 991px) {
  .hero-bg-img {
    width: 100%;
    opacity: 0.2;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  }
}

/*--------------------------------------------------------------
# About Section — Collage overrides
--------------------------------------------------------------*/
.about-collage .hc-item {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
}

.about-collage .hc-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

/* Floating ZAMRA badge */
.hc-accent-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: linear-gradient(135deg, #0a7ea4, #0d9488);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.6);
  animation: hero-float 6s ease-in-out infinite;
  white-space: nowrap;
}

.hc-accent-badge i {
  font-size: 15px;
}

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

/* Mobile responsive improvements for better centering */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 16px;
  }

  .about h3 {
    text-align: center;
    font-size: 28px;
  }

  .services .details h3 {
    font-size: 24px;
  }

  .features .nav-link h4 {
    font-size: 18px;
  }

  /* Center all h2 elements on mobile for better readability */
  h2 {
    text-align: center;
  }

  /* Ensure paragraphs in sections are well-aligned on mobile */
  .container p {
    text-align: center;
  }
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stats .stats-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: var(--surface-color);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 4px solid var(--contrast-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: all 0.3s ease;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  box-shadow: 0 4px 12px rgba(10, 126, 164, 0.3);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 26px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Service Cards
--------------------------------------------------------------*/
.svc-section.section {
  background-color: #dceef8 !important;
}

.svc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px 26px;
  border: 1px solid #b8d9ee;
  border-top: 4px solid #0a7ea4;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 80, 130, 0.12);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 80, 130, 0.2);
  border-color: #0a7ea4;
  border-top-color: #0d9488;
}

.svc-card--featured {
  background: linear-gradient(155deg, #0d9488 0%, #0a7ea4 50%, #0d3b6e 100%);
  border: 1px solid #0d9488;
  border-top: 4px solid #14b8a6;
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.35);
}

.svc-card--featured:hover {
  box-shadow: 0 16px 44px rgba(10, 126, 164, 0.5);
  border-top-color: rgba(255, 255, 255, 0.6);
}

.svc-card-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 44px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  font-family: var(--heading-font);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.svc-card--featured .svc-card-num {
  color: rgba(255, 255, 255, 0.1);
}

.svc-card-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid #6ee7b7;
}

.svc-card--featured .svc-card-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.45);
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  background: #e0f2fe;
  color: #0a7ea4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.svc-card:hover .svc-card-icon {
  background: #0a7ea4;
  color: #ffffff;
}

.svc-card--featured .svc-card-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.svc-card--featured:hover .svc-card-icon {
  background: rgba(255, 255, 255, 0.28);
}

.svc-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.35;
}

.svc-card--featured .svc-card-title {
  color: #ffffff;
}

.svc-card-desc {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 14px;
}

.svc-card--featured .svc-card-desc {
  color: rgba(255, 255, 255, 0.74);
}

.svc-card-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid #e2ecf5;
  padding-top: 14px;
}

.svc-card--featured .svc-card-list {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.svc-card-list li {
  font-size: 12.5px;
  color: #4a5568;
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.6;
}

.svc-card-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0a7ea4;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.svc-card--featured .svc-card-list li {
  color: rgba(255, 255, 255, 0.78);
}

.svc-card--featured .svc-card-list li::before {
  background: #7dd3fc;
}

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

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

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

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

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

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

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

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

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.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(--default-color), transparent 40%);
  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: 0 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 50%);
  opacity: 0.5;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 24px 0 30px 0;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact .info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.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: 12px;
  transition: all 0.3s ease-in-out;
  background: rgba(10, 126, 164, 0.1);
  border: 2px solid rgba(10, 126, 164, 0.2);
}

.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 .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: 12px 36px;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(10, 126, 164, 0.3);
}

.contact .php-email-form button[type="submit"]:hover {
  background: #076a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.4);
}

/*--------------------------------------------------------------
# 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;
}

.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 .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Esteem Pharma  Component Styles
--------------------------------------------------------------*/

/*  Hero h3 sub-headline  */
.hero h3 {
  font-size: 1.35rem;
  font-weight: 400;
  text-align: left;
  margin-top: 0.8rem;
  max-width: 700px;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero h3 {
    font-size: 1.05rem;
  }
}

/*  Hero Badge  */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 7px 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulsedot 2.2s ease-in-out infinite;
}

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

/*  Key Highlights Strip  */
.highlights-strip {
  background: linear-gradient(135deg, #0d9488 0%, #0a7ea4 100%);
  padding: 3rem 0;
}

.highlights-strip .stat-item {
  text-align: center;
  color: #fff;
}

.highlights-strip .stat-value {
  display: inline-block;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
}

.highlights-strip .stat-value::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: stat-shine 3.5s ease-in-out infinite;
}

.highlights-strip .stat-item:nth-child(2) .stat-value::after {
  animation-delay: 0.4s;
}
.highlights-strip .stat-item:nth-child(3) .stat-value::after {
  animation-delay: 0.8s;
}
.highlights-strip .stat-item:nth-child(4) .stat-value::after {
  animation-delay: 1.2s;
}

@keyframes stat-shine {
  0% {
    left: -120%;
  }
  40% {
    left: 160%;
  }
  100% {
    left: 160%;
  }
}

.highlights-strip .stat-label {
  display: block;
  font-size: 0.71rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 5px;
}

/*  Info Pill Cards  */
.info-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f4f7ff;
  border: 1px solid #dce6ff;
  border-radius: 10px;
  padding: 13px 16px;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.info-pill:hover {
  box-shadow: 0 4px 18px rgba(10, 126, 164, 0.12);
  transform: translateY(-2px);
}

.info-pill .pill-icon {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-top: 1px;
  flex-shrink: 0;
}

.info-pill strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #888;
  margin-bottom: 3px;
}

.info-pill p {
  margin: 0;
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
}

/*  Service Group Cards  */
.service-group-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(10, 126, 164, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.service-group-card:hover {
  box-shadow: 0 12px 32px rgba(10, 126, 164, 0.12);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.service-group-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(10, 126, 164, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-group-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: #fff;
}

.service-group-card h4 {
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-group-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-group-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-group-card ul li:last-child {
  border-bottom: none;
}

.service-group-card ul li i {
  color: var(--accent-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/*  Service Items hover  */
.service-item {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease !important;
  border-radius: 12px !important;
}

.service-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09) !important;
}

/*  Regulatory Process Steps  */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 1rem;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, #0d9488, #0a7ea4);
  z-index: 0;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step .step-number {
  position: absolute;
  top: -4px;
  right: calc(50% - 38px);
  background: var(--accent-color);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-step .step-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.4rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(10, 126, 164, 0.15);
}

.process-step:hover .step-icon {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 22px rgba(10, 126, 164, 0.35);
  transform: translateY(-4px);
}

.process-step h5 {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.process-step p {
  font-size: 0.78rem;
  color: #666;
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .process-steps::before {
    display: none;
  }
  .process-step {
    min-width: 44%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .process-step {
    min-width: 90%;
  }
}

/*  Leadership Cards  */
.leader-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(10, 126, 164, 0.1);
  border-bottom: 4px solid var(--accent-color);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 126, 164, 0.12);
}

.leader-card .leader-avatar {
  font-size: 5rem;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 1rem;
}

.leader-card h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.leader-card .leader-role {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}

.leader-card .leader-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.leader-card .leader-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.leader-card .leader-contact a i {
  color: var(--accent-color);
  font-size: 1rem;
}

.leader-card .leader-contact a:hover {
  color: var(--accent-color);
}

/*  Pricing Cards  */
.pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(10, 126, 164, 0.12);
  border-top: 4px solid var(--accent-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: pricing-shine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

#pricing .row > div:nth-child(2) .pricing-card::before {
  animation-delay: 0.65s;
}
#pricing .row > div:nth-child(3) .pricing-card::before {
  animation-delay: 1.3s;
}
#pricing .row > div:nth-child(4) .pricing-card::before {
  animation-delay: 1.95s;
}

@keyframes pricing-shine {
  0% {
    left: -100%;
  }
  40% {
    left: 160%;
  }
  100% {
    left: 160%;
  }
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 126, 164, 0.15);
}

.pricing-card.pricing-featured {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(10, 126, 164, 0.2);
  border-color: var(--accent-color);
}

.pricing-card .pricing-icon {
  font-size: 2.6rem;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.pricing-card h4 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.pricing-card .pricing-price {
  margin: 0.8rem 0 1rem;
}

.pricing-card .price-value {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing-card .price-unit {
  font-size: 0.85rem;
  color: #888;
}

.pricing-card p {
  color: #777;
  font-size: 0.875rem;
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.popular-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 50px;
  margin-bottom: 0.7rem;
}

/* Shared CTA button used in pricing + annex */
.pricing-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-btn:hover {
  background: #076a8a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.35);
}

/*  Contact form select element  */
.contact .php-email-form select {
  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%);
  width: 100%;
}

.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  outline: none;
}

/*  Annex Box  */
.annex-box {
  background: linear-gradient(135deg, #f0f4ff, #e8efff);
  border: 1px solid #c8d8fb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.annex-box h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.annex-box > p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.annex-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.6rem;
}

.annex-tag {
  background: #fff;
  border: 1px solid #c8d8fb;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: #444;
}

/*--------------------------------------------------------------
# Gradient Text  Key Headings
--------------------------------------------------------------*/

/* Big section title labels (light backgrounds) */
.section-title p {
  background: linear-gradient(135deg, #0d9488 0%, #0a7ea4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Override back to white on dark backgrounds */
.dark-background .section-title p {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

/* Hero headline — white on dark gradient background */
.hero h2 {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  max-width: 700px;
}

.hero h3 {
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88);
  color: rgba(255, 255, 255, 0.88);
  display: block;
  max-width: 650px;
}

/* Advantage cards — Why Choose Us */
.advantage-card {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 8px 28px rgba(10, 126, 164, 0.15);
  transform: translateY(-4px);
}

.advantage-card .advantage-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #0d9488 0%, #0a7ea4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 14px;
}

.advantage-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/* Long heading text-wrap */
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.svc-card-title,
.hero h2,
.hero h3,
.section-title h2,
.pricing-card h4,
.leader-card h4 {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Tab pane h3 and About h3 */
.features .tab-pane h3,
.about h3 {
  background: linear-gradient(135deg, #0d9488 0%, #0a7ea4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/*--------------------------------------------------------------
# Hero Spiral Rings
--------------------------------------------------------------*/
.hero-spiral {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-spiral--tl {
  top: 0;
  left: 0;
}

.hero-spiral--br {
  bottom: 0;
  right: 0;
}

.hero-spiral span {
  position: absolute;
  border-radius: 50%;
  display: block;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Hero Heading word colours
--------------------------------------------------------------*/
.hero-word-esteem {
  color: #0d9488;
}

.hero-word-pharma {
  color: #38c0f0;
}

.hero-word-limited {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55em;
  letter-spacing: 6px;
  font-weight: 400;
}

/* Ring 1 — 130px solid white */
.hero-spiral span:nth-child(1) {
  width: 130px;
  height: 130px;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}

/* Ring 2 — 250px teal dashed, rotates clockwise */
.hero-spiral span:nth-child(2) {
  width: 250px;
  height: 250px;
  border: 1.5px dashed rgba(13, 148, 136, 0.52);
  animation: spiral-cw 50s linear infinite;
}

/* Ring 3 — 370px solid white */
.hero-spiral span:nth-child(3) {
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Ring 4 — 490px accent dashed, rotates counter-clockwise */
.hero-spiral span:nth-child(4) {
  width: 490px;
  height: 490px;
  border: 1.5px dashed rgba(10, 126, 164, 0.42);
  animation: spiral-ccw 70s linear infinite;
}

/* Ring 5 — 610px solid white (faint) */
.hero-spiral span:nth-child(5) {
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Ring 6 — 730px teal dashed, rotates clockwise */
.hero-spiral span:nth-child(6) {
  width: 730px;
  height: 730px;
  border: 1px dashed rgba(13, 148, 136, 0.28);
  animation: spiral-cw 100s linear infinite;
}

/* Ring 7 — 850px solid white (very faint) */
.hero-spiral span:nth-child(7) {
  width: 850px;
  height: 850px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ring 8 — 970px accent dashed, rotates counter-clockwise */
.hero-spiral span:nth-child(8) {
  width: 970px;
  height: 970px;
  border: 1px dashed rgba(10, 126, 164, 0.18);
  animation: spiral-ccw 130s linear infinite;
}

/* Bottom-right corner spins in opposite direction for variety */
.hero-spiral--br span:nth-child(2) {
  animation-name: spiral-ccw;
}
.hero-spiral--br span:nth-child(4) {
  animation-name: spiral-cw;
}
.hero-spiral--br span:nth-child(6) {
  animation-name: spiral-ccw;
}
.hero-spiral--br span:nth-child(8) {
  animation-name: spiral-cw;
}

@keyframes spiral-cw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spiral-ccw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/*--------------------------------------------------------------
# Mobile Compatibility
--------------------------------------------------------------*/
* {
  -webkit-text-size-adjust: 100%;
}

/* Tablet landscape (≤ 992px) */
@media (max-width: 992px) {
  .hero {
    padding: 130px 0 80px;
  }

  .hero h2 {
    font-size: 48px;
  }

  .hero h3 {
    font-size: 19px;
  }

  .hero-stats {
    margin-top: 36px;
  }
}

/* Tablet portrait / large phone (≤ 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 110px 0 70px;
    min-height: auto;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero h3 {
    font-size: 16px;
    max-width: 100%;
  }

  .hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    margin-top: 28px;
    padding: 14px 16px;
  }

  /* Hide outermost spiral rings to keep layout clean on small screens */
  .hero-spiral span:nth-child(6),
  .hero-spiral span:nth-child(7),
  .hero-spiral span:nth-child(8) {
    display: none;
  }

  .highlights-strip {
    padding: 2rem 0;
  }

  .highlights-strip .stat-value {
    font-size: 1.5rem;
  }

  .pricing-card.pricing-featured {
    transform: none;
  }

  .leader-card {
    padding: 2rem 1.5rem;
  }
}

/* Phone portrait (≤ 576px) */
@media (max-width: 576px) {
  .section-title {
    padding-bottom: 36px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h2 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .hero h3 {
    font-size: 15px;
  }

  .hero-stat-divider {
    display: none;
  }

  /* Reduce spiral presence further on very small screens */
  .hero-spiral span:nth-child(4),
  .hero-spiral span:nth-child(5) {
    display: none;
  }

  .svc-card {
    padding: 24px 20px 20px;
  }

  .svc-card-title {
    font-size: 15px;
  }

  .process-step {
    min-width: 100% !important;
    margin-bottom: 1.6rem;
  }

  .pricing-card .price-value {
    font-size: 2.2rem;
  }

  .advantage-card {
    padding: 20px 16px;
  }

  .annex-box {
    padding: 1.8rem 1.2rem;
  }

  .annex-tag {
    font-size: 0.78rem;
  }

  .footer-links ul li {
    padding: 3px 0;
  }
}

/*==============================================================
 # VISUAL DESIGN ENHANCEMENT LAYER v2
 # Glassmorphism · Soft gradients · Refined spacing
 # Typography hierarchy · Micro-interactions · Smooth shadows
==============================================================*/

/* ── EXTENDED DESIGN TOKENS ─────────────────────────────────*/
:root {
  /* Layered, coloured elevation shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.11), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.13), 0 8px 20px rgba(0, 0, 0, 0.07);
  --shadow-accent:
    0 6px 24px rgba(10, 126, 164, 0.22), 0 2px 8px rgba(10, 126, 164, 0.12);
  --shadow-accent-lg:
    0 14px 42px rgba(10, 126, 164, 0.3), 0 4px 14px rgba(10, 126, 164, 0.16);
  --shadow-teal:
    0 6px 24px rgba(13, 148, 136, 0.22), 0 2px 8px rgba(13, 148, 136, 0.12);
  --shadow-teal-lg:
    0 14px 42px rgba(13, 148, 136, 0.3), 0 4px 14px rgba(13, 148, 136, 0.16);

  /* Glassmorphism tokens */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-strong: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(16px);
  --glass-blur-sm: blur(8px);

  /* Brand gradients */
  --gradient-brand: linear-gradient(135deg, #0d9488 0%, #0a7ea4 100%);
  --gradient-brand-45: linear-gradient(45deg, #0d9488 0%, #0a7ea4 100%);
  --gradient-brand-reverse: linear-gradient(135deg, #0a7ea4 0%, #0d9488 100%);
  --gradient-deep: linear-gradient(
    135deg,
    #0d9488 0%,
    #0a7ea4 50%,
    #075a82 100%
  );
  --gradient-subtle-cool: linear-gradient(135deg, #f0faf9 0%, #e8f4fb 100%);
  --gradient-card-hover: linear-gradient(
    160deg,
    rgba(13, 148, 136, 0.06) 0%,
    rgba(10, 126, 164, 0.06) 100%
  );

  /* Radius scale */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transition presets */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s var(--ease-in-out);
  --transition-base: all 0.28s var(--ease-in-out);
  --transition-slow: all 0.45s var(--ease-out-quart);
}

/* ── GLOBAL BODY & BASE ──────────────────────────────────── */
body {
  font-size: 15.5px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth anchor transitions */
a {
  transition: var(--transition-fast);
}

/* ── TYPOGRAPHY HIERARCHY ────────────────────────────────── */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}
h4 {
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}
h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
h6 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ── SECTION TITLE REFINEMENT ────────────────────────────── */
.section-title {
  padding-bottom: 72px;
}

.section-title h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a7ea4;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius-pill);
  margin: 10px auto 0;
  transition: width 0.4s var(--ease-out-quart);
}

.section-title:hover h2::after {
  width: 100px;
}

.section-title p {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 8px;
}

/* ── SECTIONS ────────────────────────────────────────────── */
section,
.section {
  padding: 80px 0;
}

/* ── GLOBAL HEADER ───────────────────────────────────────── */
.scrolled .header {
  --background-color: rgba(10, 18, 38, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    0 2px 32px rgba(0, 0, 0, 0.22),
    0 1px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Header CTA button */
.header .cta-btn,
.header .cta-btn:focus {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-pill);
  padding: 9px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition-base);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-accent);
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-btn-primary {
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  padding: 15px 34px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-accent-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s ease;
  border-radius: inherit;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-teal-lg);
}

.hero-btn-primary:hover::after {
  background: rgba(255, 255, 255, 0.1);
}

.hero-btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 15px 34px;
  font-weight: 600;
  font-size: 14.5px;
  transition: var(--transition-base);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* Hero stats bar */
.hero-stats {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Hero badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* ── SERVICE CARDS ───────────────────────────────────────── */
.svc-section.section {
  background: linear-gradient(
    160deg,
    #ddf0f8 0%,
    #c9e9f5 50%,
    #d8f0ec 100%
  ) !important;
}

.svc-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 3px solid transparent;
  border-image: var(--gradient-brand) 1;
  border-radius: var(--radius-lg) !important;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  border-color: transparent;
  background: rgba(255, 255, 255, 0.95);
}

/* Override the gradient border trick for hover */
.svc-card:hover {
  border-top: 3px solid #0d9488;
  border-left: 1px solid rgba(10, 126, 164, 0.35);
  border-right: 1px solid rgba(10, 126, 164, 0.15);
  border-bottom: 1px solid rgba(10, 126, 164, 0.1);
}

.svc-card--featured {
  background: linear-gradient(155deg, #0d9488 0%, #0a7ea4 52%, #075a82 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 3px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-teal-lg);
}

.svc-card--featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 56px rgba(13, 148, 136, 0.42),
    0 8px 20px rgba(10, 126, 164, 0.24);
  border-top: 3px solid rgba(255, 255, 255, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.svc-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(
    135deg,
    rgba(10, 126, 164, 0.12) 0%,
    rgba(13, 148, 136, 0.12) 100%
  );
  border-radius: var(--radius-md);
  font-size: 22px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
}

.svc-card:hover .svc-card-icon {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-accent);
  transform: scale(1.08) rotate(-2deg);
}

.svc-card--featured .svc-card-icon {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.svc-card--featured:hover .svc-card-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08) rotate(-2deg);
}

.svc-card-title {
  font-size: 15.5px;
  letter-spacing: -0.01em;
}

.svc-card-num {
  font-size: 52px;
  color: rgba(0, 0, 0, 0.035);
}

.svc-card--featured .svc-card-num {
  color: rgba(255, 255, 255, 0.08);
}

.svc-card-badge {
  border-radius: var(--radius-pill);
  font-size: 9.5px;
  letter-spacing: 1px;
}

.svc-card-list li::before {
  background: linear-gradient(135deg, #0d9488, #0a7ea4);
  width: 5px;
  height: 5px;
  top: 9px;
}

/* ── ADVANTAGE CARDS ─────────────────────────────────────── */
.advantage-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out-quart);
  transform-origin: left;
}

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

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
  background: var(--glass-bg-strong);
  border-color: rgba(10, 126, 164, 0.2);
}

.advantage-card .advantage-icon {
  font-size: 2.2rem;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: var(--gradient-subtle-cool);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.advantage-card:hover .advantage-icon {
  background: var(--gradient-brand);
  -webkit-text-fill-color: #ffffff;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: var(--shadow-accent);
}

.advantage-card h5 {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
#process .process-step {
  padding: 0 16px;
  transition: var(--transition-base);
}

.process-steps::before {
  background: var(--gradient-brand);
  height: 2px;
  opacity: 0.55;
}

.process-step .step-icon {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 2.5px solid rgba(10, 126, 164, 0.45);
  border-radius: 50%;
  box-shadow:
    var(--shadow-sm),
    0 0 0 6px rgba(10, 126, 164, 0.06);
  font-size: 1.5rem;
  transition: var(--transition-base);
}

.process-step:hover .step-icon {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow:
    var(--shadow-accent),
    0 0 0 8px rgba(10, 126, 164, 0.1);
  transform: translateY(-5px) scale(1.06);
}

.process-step .step-number {
  width: 22px;
  height: 22px;
  background: var(--gradient-brand);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}

.process-step h5 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.process-step p {
  font-size: 0.8rem;
  line-height: 1.55;
}

/* ── PRICING CARDS ───────────────────────────────────────── */
.pricing-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 3px solid rgba(10, 126, 164, 0.55);
  border-radius: var(--radius-lg) !important;
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  background: #fff;
  border-top-color: #0d9488;
}

.pricing-card.pricing-featured {
  background: linear-gradient(155deg, #0d9488 0%, #0a7ea4 52%, #075a82 100%);
  border: none;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-teal-lg);
  color: #fff;
}

.pricing-card.pricing-featured h4,
.pricing-card.pricing-featured .price-value,
.pricing-card.pricing-featured p {
  color: #fff;
}

.pricing-card.pricing-featured .price-unit {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.pricing-featured .pricing-icon {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card.pricing-featured:hover {
  transform: translateY(-12px);
  box-shadow:
    0 28px 64px rgba(13, 148, 136, 0.45),
    0 8px 24px rgba(10, 126, 164, 0.25);
}

.pricing-card .pricing-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 126, 164, 0.09) 0%,
    rgba(13, 148, 136, 0.09) 100%
  );
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(-4deg);
}

.pricing-card.pricing-featured .pricing-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.pricing-card .price-value {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-card.pricing-featured .price-value {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.popular-badge {
  background: var(--gradient-brand-45);
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  box-shadow: 0 2px 10px rgba(10, 126, 164, 0.3);
}

/* Pricing CTA button */
.pricing-btn {
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  padding: 11px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow-accent);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.22s ease;
  border-radius: inherit;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal-lg);
  color: #fff;
}

.pricing-btn:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-btn:active {
  transform: translateY(0) scale(0.97);
}

.pricing-card.pricing-featured .pricing-btn {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.pricing-card.pricing-featured .pricing-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* ── LEADER CARDS ────────────────────────────────────────── */
.leader-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 3px solid transparent;
  background-image:
    linear-gradient(var(--glass-bg), var(--glass-bg)), var(--gradient-brand);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: var(--radius-xl) !important;
  padding: 3rem 2.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    var(--gradient-brand);
}

.leader-card .leader-avatar {
  display: inline-flex;
  width: 90px;
  height: 90px;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(
    135deg,
    rgba(10, 126, 164, 0.1) 0%,
    rgba(13, 148, 136, 0.1) 100%
  );
  border-radius: 50%;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  border: 2px solid rgba(10, 126, 164, 0.18);
  transition: var(--transition-base);
}

.leader-card:hover .leader-avatar {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
  transform: scale(1.06);
}

.leader-card h4 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.leader-card .leader-role {
  font-size: 0.85rem;
  color: #0a7ea4;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  margin-bottom: 1.6rem;
}

.leader-card .leader-contact a {
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  background: rgba(10, 126, 164, 0.05);
  border: 1px solid rgba(10, 126, 164, 0.1);
  transition: var(--transition-fast);
  width: 100%;
  justify-content: center;
}

.leader-card .leader-contact a:hover {
  background: rgba(10, 126, 164, 0.12);
  border-color: rgba(10, 126, 164, 0.28);
  color: var(--accent-color);
  transform: translateX(2px);
}

/* ── INFO PILLS ──────────────────────────────────────────── */
.info-pill {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.info-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  border-color: rgba(10, 126, 164, 0.25);
}

.info-pill .pill-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 126, 164, 0.12) 0%,
    rgba(13, 148, 136, 0.12) 100%
  );
  border-radius: var(--radius-sm);
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.info-pill:hover .pill-icon {
  background: var(--gradient-brand);
  color: #fff;
  transform: scale(1.08);
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact .info-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg) !important;
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

.contact .info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
  background: var(--glass-bg-strong);
  border-color: rgba(10, 126, 164, 0.25);
}

.contact .info-item i {
  background: linear-gradient(
    135deg,
    rgba(10, 126, 164, 0.12) 0%,
    rgba(13, 148, 136, 0.12) 100%
  );
  border: 2px solid rgba(10, 126, 164, 0.18);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.contact .info-item:hover i {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
  transform: scale(1.08) rotate(-4deg);
}

/* Contact form */
.contact .php-email-form {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea,
.contact .php-email-form select {
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  border: 1.5px solid rgba(10, 126, 164, 0.18);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition-fast);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 126, 164, 0.12);
  outline: none;
}

.contact .php-email-form button[type="submit"] {
  background: var(--gradient-deep);
  border-radius: var(--radius-md);
  padding: 13px 40px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-accent);
  transition: var(--transition-base);
  border: none;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent-lg);
  background: linear-gradient(135deg, #0a7ea4 0%, #0d9488 100%);
}

.contact .php-email-form button[type="submit"]:active {
  transform: translateY(0) scale(0.97);
}

/* ── ANNEX BOX ───────────────────────────────────────────── */
.annex-box {
  background: linear-gradient(
    160deg,
    rgba(240, 244, 255, 0.9) 0%,
    rgba(232, 239, 255, 0.9) 100%
  );
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: 3rem 2.4rem;
  box-shadow: var(--shadow-lg);
}

.annex-tag {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(10, 126, 164, 0.18);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  font-size: 0.82rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.annex-tag:hover {
  background: #fff;
  border-color: rgba(10, 126, 164, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ── HIGHLIGHTS STRIP ────────────────────────────────────── */
.highlights-strip {
  background: var(--gradient-deep);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.highlights-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.highlights-strip .stat-item {
  position: relative;
  z-index: 1;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  transition: var(--transition-base);
}

.highlights-strip .stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.highlights-strip .stat-value {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.highlights-strip .stat-label {
  font-size: 0.68rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

/* ── SCROLL-TOP BUTTON ───────────────────────────────────── */
.scroll-top {
  background: var(--gradient-brand);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-accent);
  transition: var(--transition-base);
}

.scroll-top:hover {
  background: var(--gradient-brand-reverse);
  transform: translateY(-4px) scale(1.06);
  box-shadow: var(--shadow-accent-lg);
}

/* ── FOOTER POLISH ───────────────────────────────────────── */
.footer .social-links a {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.footer .social-links a:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--shadow-accent);
}

.footer .footer-newsletter .newsletter-form {
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  overflow: hidden;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: rgba(13, 148, 136, 0.7);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--gradient-brand);
  padding: 0 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ── MOBILE RESPONSIVE OVERRIDE ─────────────────────────── */
@media (max-width: 768px) {
  section,
  .section {
    padding: 60px 0;
  }

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

  .highlights-strip .stat-item {
    padding: 10px 14px;
  }

  .contact .php-email-form {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .annex-box {
    padding: 2rem 1.4rem;
    border-radius: var(--radius-lg);
  }

  .leader-card {
    padding: 2.4rem 1.8rem;
    border-radius: var(--radius-lg) !important;
  }

  .pricing-card {
    border-radius: var(--radius-lg) !important;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    padding: 16px 18px;
    border-radius: var(--radius-md);
  }

  .svc-card {
    border-radius: var(--radius-md) !important;
  }
}

/*==============================================================
 # WARM ACCENT LAYER — Amber / Gold / Sunrise
 # Adds yellow-amber tones to complement the teal/blue palette
==============================================================*/

/* ── AMBER COLOR TOKENS ──────────────────────────────────── */
:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fbbf24;
  --amber-pale: #fef9ee;
  --amber-muted: #fef3c7;
  --amber-border: rgba(245, 158, 11, 0.28);
  --amber-border-lg: rgba(245, 158, 11, 0.55);
  --gradient-amber: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-sunrise: linear-gradient(
    135deg,
    #fbbf24 0%,
    #f97316 55%,
    #ef4444 100%
  );
  --shadow-amber:
    0 6px 24px rgba(245, 158, 11, 0.25), 0 2px 8px rgba(245, 158, 11, 0.14);
  --shadow-amber-lg:
    0 14px 40px rgba(245, 158, 11, 0.32), 0 4px 14px rgba(245, 158, 11, 0.18);
}

/* ── SERVICE CARDS — warm ghost number ───────────────────── */
/* Show the ghost card numbers as a warm amber tint instead of invisible */
.svc-card-num {
  color: rgba(245, 158, 11, 0.12);
}

.svc-card:hover .svc-card-num {
  color: rgba(245, 158, 11, 0.2);
}

/* "Primary Service" badge → amber */
.svc-card-badge {
  background: #fff8e1;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Cards 1, 3, 5, 7 (odd non-featured) get amber top-border on hover */
.svc-card:not(.svc-card--featured):hover {
  border-top: 3px solid var(--amber) !important;
}

/* Alternate icon colour: even service cards get amber icon on hover */
.col-lg-3:nth-child(even)
  .svc-card:not(.svc-card--featured):hover
  .svc-card-icon {
  background: var(--gradient-amber);
  box-shadow: var(--shadow-amber);
}

/* Bullet dots on even cards → amber */
.col-lg-3:nth-child(even)
  .svc-card:not(.svc-card--featured)
  .svc-card-list
  li::before {
  background: var(--amber);
}

/* ── PROCESS STEPS — amber step numbers ──────────────────── */
.process-step .step-number {
  background: var(--gradient-amber);
  box-shadow: var(--shadow-amber);
}

/* Alternate step icons: even steps get amber on hover */
.process-step:nth-child(even):hover .step-icon {
  background: var(--gradient-amber);
  color: #fff;
  border-color: transparent;
  box-shadow:
    var(--shadow-amber),
    0 0 0 8px rgba(245, 158, 11, 0.1);
}

/* ── ADVANTAGE CARDS — even cards amber accent ───────────── */
.col-md-6:nth-child(even) .advantage-card::before,
.col-lg-4:nth-child(even) .advantage-card::before {
  background: var(--gradient-amber);
}

.col-md-6:nth-child(even) .advantage-card:hover .advantage-icon,
.col-lg-4:nth-child(even) .advantage-card:hover .advantage-icon {
  background: var(--gradient-amber);
  -webkit-text-fill-color: #ffffff;
  box-shadow: var(--shadow-amber);
}

/* ── HIGHLIGHTS STRIP — amber on 2nd & 4th stat ─────────── */
.highlights-strip .col-6:nth-child(2) .stat-item,
.highlights-strip .col-md-3:nth-child(2) .stat-item {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.1);
}

.highlights-strip .col-6:nth-child(4) .stat-item,
.highlights-strip .col-md-3:nth-child(4) .stat-item {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.1);
}

.highlights-strip .col-6:nth-child(2) .stat-value,
.highlights-strip .col-md-3:nth-child(2) .stat-value,
.highlights-strip .col-6:nth-child(4) .stat-value,
.highlights-strip .col-md-3:nth-child(4) .stat-value {
  color: #fef9c3;
}

.highlights-strip .col-6:nth-child(2) .stat-item:hover,
.highlights-strip .col-md-3:nth-child(2) .stat-item:hover,
.highlights-strip .col-6:nth-child(4) .stat-item:hover,
.highlights-strip .col-md-3:nth-child(4) .stat-item:hover {
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.22);
}

/* ── PRICING — "Most Popular" badge → gold ───────────────── */
.popular-badge {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-amber);
  color: #7c2d12;
}

/* Pricing cards 1 & 3 get amber top-border accent */
#pricing .row > div:nth-child(1) .pricing-card:not(.pricing-featured),
#pricing .row > div:nth-child(3) .pricing-card:not(.pricing-featured) {
  border-top: 3px solid var(--amber);
}

#pricing .row > div:nth-child(1) .pricing-card:hover,
#pricing .row > div:nth-child(3) .pricing-card:hover {
  border-top-color: var(--amber-dark);
  box-shadow: var(--shadow-amber-lg);
}

/* Price value on amber-accented cards → amber gradient text */
#pricing .row > div:nth-child(1) .pricing-card .price-value,
#pricing .row > div:nth-child(3) .pricing-card .price-value {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing icon on amber cards */
#pricing .row > div:nth-child(1) .pricing-card:hover .pricing-icon,
#pricing .row > div:nth-child(3) .pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12) 0%,
    rgba(249, 115, 22, 0.12) 100%
  );
}

/* ── INFO PILLS — 2nd & 3rd pill get amber icon ──────────── */
.col-md-6:nth-child(2) .info-pill .pill-icon,
.col-md-6:nth-child(3) .info-pill .pill-icon {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12) 0%,
    rgba(251, 191, 36, 0.12) 100%
  );
  color: var(--amber-dark);
}

.col-md-6:nth-child(2) .info-pill:hover .pill-icon,
.col-md-6:nth-child(3) .info-pill:hover .pill-icon {
  background: var(--gradient-amber);
  color: #fff;
}

.col-md-6:nth-child(2) .info-pill:hover,
.col-md-6:nth-child(3) .info-pill:hover {
  box-shadow: var(--shadow-amber);
  border-color: var(--amber-border-lg);
}

/* ── CONTACT INFO ITEMS — 2nd item amber ────────────────── */
.contact .info-item:nth-child(2) i {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12) 0%,
    rgba(251, 191, 36, 0.12) 100%
  );
  border-color: rgba(245, 158, 11, 0.28);
  color: var(--amber-dark);
}

.contact .info-item:nth-child(2):hover i {
  background: var(--gradient-amber);
  color: #fff;
  box-shadow: var(--shadow-amber);
}

.contact .info-item:nth-child(2):hover {
  box-shadow: var(--shadow-amber);
  border-color: var(--amber-border);
}

/* ── ANNEX BOX — warm amber glow ────────────────────────── */
.annex-box {
  background: linear-gradient(155deg, #fffbeb 0%, #fef9ee 40%, #f0f9ff 100%);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.annex-tag {
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.annex-tag:hover {
  border-color: var(--amber-border-lg);
  box-shadow: var(--shadow-amber);
  color: #92400e;
}

/* ── LEADER CARDS — 1st card gets amber bottom accent ────── */
.col-lg-5:nth-child(1) .leader-card,
.col-md-6:nth-child(1) .leader-card {
  background-image:
    linear-gradient(var(--glass-bg), var(--glass-bg)), var(--gradient-amber);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.col-lg-5:nth-child(1) .leader-card:hover,
.col-md-6:nth-child(1) .leader-card:hover {
  box-shadow: var(--shadow-amber-lg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    var(--gradient-amber);
}

.col-lg-5:nth-child(1) .leader-card:hover .leader-avatar,
.col-md-6:nth-child(1) .leader-card:hover .leader-avatar {
  background: var(--gradient-amber);
  box-shadow: var(--shadow-amber);
}

/* ── SCROLL-TOP — amber on hover ────────────────────────── */
.scroll-top:hover {
  background: var(--gradient-amber);
  box-shadow: var(--shadow-amber-lg);
}

/* ── SECTION TITLE — amber underline on light sections ─────
   Every other section title line gets amber instead of teal  */
#services .section-title h2::after,
#pricing .section-title h2::after,
#contact .section-title h2::after {
  background: var(--gradient-amber);
}

#services .section-title h2,
#pricing .section-title h2,
#contact .section-title h2 {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO secondary button — warm amber hover ────────────── */
.hero-btn-primary:hover {
  background: var(--gradient-amber);
  box-shadow: var(--shadow-amber-lg);
}

/* ── HEADER CTA — amber hover glow ──────────────────────── */
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  background: var(--gradient-amber);
  border-color: transparent;
  box-shadow: var(--shadow-amber);
}

/* ── NAV active underline — amber tint in mixed mode ─────── */
.navmenu > ul > li > a:before {
  background-color: var(--amber);
}

/*=================================================================
 # PREMIUM REDESIGN — SaaS-Grade Visual System
 # Clean · Minimal · High-conversion · Trust-forward
 # Powered by Plus Jakarta Sans + Inter
=================================================================*/

/* ── DESIGN TOKENS RESET ─────────────────────────────────── */
:root {
  /* Refined brand palette */
  --p-brand:       #0086c9;
  --p-brand-hover: #006ba1;
  --p-brand-light: rgba(0,134,201,0.08);
  --p-teal:        #0d9488;
  --p-amber:       #f59e0b;
  --p-amber-dark:  #d97706;
  --p-amber-light: rgba(245,158,11,0.08);

  /* Ink scale — typographic grey ramp */
  --p-ink-900: #0d1117;
  --p-ink-700: #1f2937;
  --p-ink-500: #374151;
  --p-ink-400: #4b5563;
  --p-ink-300: #6b7280;
  --p-ink-200: #9ca3af;
  --p-ink-100: #e5e7eb;
  --p-ink-50:  #f9fafb;
  --p-ink-30:  #f3f4f6;

  /* Surfaces */
  --p-surface:     #ffffff;
  --p-surface-alt: #f7f9fc;
  --p-dark:        #060c18;
  --p-dark-card:   #0c1422;

  /* Elevation (no colour tint — pure shadow) */
  --p-e1: 0 1px 2px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
  --p-e2: 0 1px 3px rgba(0,0,0,0.06), 0 4px 14px rgba(0,0,0,0.07);
  --p-e3: 0 2px 6px rgba(0,0,0,0.07), 0 10px 28px rgba(0,0,0,0.08);
  --p-e4: 0 4px 10px rgba(0,0,0,0.07), 0 20px 48px rgba(0,0,0,0.09);
  --p-eb:  0 4px 16px rgba(0,134,201,0.22), 0 1px 4px rgba(0,134,201,0.12);
  --p-eb2: 0 8px 32px rgba(0,134,201,0.30), 0 2px 8px rgba(0,134,201,0.16);
  --p-ea:  0 4px 16px rgba(245,158,11,0.24), 0 1px 4px rgba(245,158,11,0.14);
  --p-ea2: 0 8px 32px rgba(245,158,11,0.30), 0 2px 8px rgba(245,158,11,0.16);

  /* Borders */
  --p-border:       1px solid var(--p-ink-100);
  --p-border-brand: 1px solid rgba(0,134,201,0.25);

  /* Speed — snappy feels premium */
  --p-fast: all 0.15s cubic-bezier(0.4,0,0.2,1);
  --p-base: all 0.22s cubic-bezier(0.4,0,0.2,1);
  --p-slow: all 0.36s cubic-bezier(0.22,1,0.36,1);

  /* Radii */
  --p-r-sm:   8px;
  --p-r-md:   12px;
  --p-r-lg:   16px;
  --p-r-xl:   22px;
  --p-r-pill: 9999px;

  /* Section spacing */
  --p-section:    96px;
  --p-section-sm: 64px;
}

/* ── FONT STACK OVERRIDE ─────────────────────────────────── */
:root {
  --heading-font: "Plus Jakarta Sans", "Raleway", system-ui, sans-serif;
  --default-font: "Inter", system-ui, -apple-system, sans-serif;
  --nav-font:     "Inter", system-ui, sans-serif;
  --accent-color: var(--p-brand);
  --heading-color: var(--p-ink-900);
  --default-color: var(--p-ink-500);
}

/* ── BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--default-font) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--p-ink-500) !important;
  background: var(--p-surface) !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-feature-settings: "kern" 1, "liga" 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font) !important;
  color: var(--p-ink-900) !important;
  letter-spacing: -0.022em !important;
  line-height: 1.14 !important;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem)  !important; font-weight: 800 !important; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem)!important; font-weight: 800 !important; }
h3 { font-size: clamp(1.4rem, 3.2vw, 2.1rem)!important; font-weight: 700 !important; }
h4 { font-size: clamp(1.1rem, 2.6vw, 1.55rem)!important; font-weight: 700 !important; }
h5 { font-size: 1.0rem  !important; font-weight: 700 !important; line-height: 1.4 !important; }
h6 { font-size: 0.875rem!important; font-weight: 600 !important; }

p  { font-family: var(--default-font); color: var(--p-ink-500); line-height: 1.75; }
a  { color: var(--p-brand); transition: var(--p-fast); }
a:hover { color: var(--p-brand-hover); }

/* ── SECTIONS ────────────────────────────────────────────── */
section, .section {
  padding: var(--p-section) 0 !important;
  overflow: clip !important;
}

.light-background {
  --background-color: var(--p-surface-alt) !important;
  background-color: var(--p-surface-alt) !important;
}

/* ── SECTION TITLES ──────────────────────────────────────── */
.section-title {
  padding-bottom: 68px !important;
  text-align: center;
}

/* Eyebrow label (the h2 inside .section-title) */
.section-title h2 {
  display: inline-block !important;
  font-family: var(--default-font) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 2.8px !important;
  text-transform: uppercase !important;
  color: var(--p-brand) !important;
  background-color: var(--p-brand-light) !important;
  background: var(--p-brand-light) !important;
  -webkit-text-fill-color: var(--p-brand) !important;
  border: 1px solid rgba(0,134,201,0.22) !important;
  border-radius: var(--p-r-pill) !important;
  padding: 5px 16px !important;
  line-height: 1.6 !important;
}

.section-title h2::after { display: none !important; }

/* Big headline (the p inside .section-title) */
.section-title p {
  font-family: var(--heading-font) !important;
  font-size: clamp(1.8rem, 4.2vw, 2.9rem) !important;
  font-weight: 800 !important;
  color: var(--p-ink-900) !important;
  -webkit-text-fill-color: var(--p-ink-900) !important;
  background: none !important;
  letter-spacing: -0.028em !important;
  line-height: 1.12 !important;
  margin-top: 18px !important;
  text-transform: none !important;
}

/* Amber eyebrow on Services / Pricing / Contact */
#services .section-title h2,
#pricing  .section-title h2,
#contact  .section-title h2 {
  color: var(--p-amber-dark) !important;
  -webkit-text-fill-color: var(--p-amber-dark) !important;
  background-color: var(--p-amber-light) !important;
  background: var(--p-amber-light) !important;
  border-color: rgba(245,158,11,0.25) !important;
}

/* Dark background label — keep white */
.dark-background .section-title p {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  height: 68px !important;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  transition: var(--p-base) !important;
}

.scrolled .header {
  background: rgba(4,7,18,0.93) !important;
  --background-color: rgba(4,7,18,0.93) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 48px rgba(0,0,0,0.32) !important;
}

.header .logo img { max-height: 56px !important; }

/* CTA button */
.header .cta-btn,
.header .cta-btn:focus {
  display: inline-flex !important;
  align-items: center !important;
  background: var(--p-brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--p-r-sm) !important;
  padding: 9px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1px !important;
  text-transform: none !important;
  box-shadow: var(--p-eb) !important;
  transition: var(--p-fast) !important;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  background: var(--p-brand-hover) !important;
  color: #fff !important;
  border-color: transparent !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--p-eb2) !important;
}

/* Desktop nav */
@media (min-width: 1200px) {
  .navmenu > ul > li { padding: 0 13px !important; }

  .navmenu a,
  .navmenu a:focus {
    font-family: var(--nav-font) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.15px !important;
    color: rgba(255,255,255,0.78) !important;
    text-transform: none !important;
    padding: 6px 0 !important;
  }

  .navmenu > ul > li > a:before {
    background-color: var(--p-amber) !important;
    height: 2px !important;
    bottom: -2px !important;
    border-radius: 2px !important;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff !important;
  }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(155deg, #050b1c 0%, #071626 45%, #040d1d 100%) !important;
  min-height: 100vh !important;
  padding: 140px 0 100px !important;
}

/* Kill dot-grid texture */
.hero::before { display: none !important; }
.hero::after  { display: none !important; }

/* Subtle grid lines overlay — replaces dot grid */
.hero .container { position: relative; z-index: 3; }

/* Headline */
.hero h2 {
  font-family: var(--heading-font) !important;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  letter-spacing: -0.038em !important;
  line-height: 1.05 !important;
  max-width: 740px !important;
  background: none !important;
}

.hero-word-esteem {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.hero-word-pharma {
  background: linear-gradient(92deg, #38bdf8 0%, #34d399 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-word-limited {
  display: block !important;
  color: rgba(255,255,255,0.38) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.38) !important;
  font-size: 0.32em !important;
  font-weight: 300 !important;
  letter-spacing: 9px !important;
  margin-top: 10px !important;
  text-transform: uppercase !important;
}

/* Subtitle */
.hero h3 {
  font-family: var(--default-font) !important;
  font-size: clamp(1rem, 2.4vw, 1.25rem) !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.60) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.60) !important;
  letter-spacing: 0 !important;
  line-height: 1.65 !important;
  margin-top: 1.6rem !important;
  max-width: 580px !important;
  background: none !important;
}

.hero p {
  font-size: 0.975rem !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.8 !important;
  max-width: 540px !important;
}

/* Hero badge */
.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--default-font) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.75) !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--p-r-pill) !important;
  padding: 6px 16px !important;
  margin-bottom: 2rem !important;
  backdrop-filter: none !important;
}

/* Primary CTA */
.hero-btn-primary {
  background: var(--p-brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--p-r-sm) !important;
  padding: 14px 30px !important;
  font-family: var(--default-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 4px 22px rgba(0,134,201,0.38), 0 1px 4px rgba(0,134,201,0.20) !important;
  transition: var(--p-fast) !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-btn-primary:hover {
  background: var(--p-brand-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 34px rgba(0,134,201,0.44), 0 2px 8px rgba(0,134,201,0.22) !important;
  color: #fff !important;
}

.hero-btn-primary:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Secondary CTA */
.hero-btn-secondary {
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: var(--p-r-sm) !important;
  color: rgba(255,255,255,0.85) !important;
  padding: 14px 30px !important;
  font-family: var(--default-font) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  transition: var(--p-fast) !important;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.13) !important;
  border-color: rgba(255,255,255,0.30) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.hero-btn-secondary:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Stats bar */
.hero-stats {
  background: rgba(255,255,255,0.05) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--p-r-md) !important;
  padding: 18px 26px !important;
  margin-top: 52px !important;
  box-shadow: none !important;
}

.hero-stat-value {
  font-family: var(--heading-font) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.02em !important;
}

.hero-stat-label {
  font-size: 0.66rem !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 1.3px !important;
  text-transform: uppercase !important;
}

.hero-stat-divider {
  background: rgba(255,255,255,0.09) !important;
  width: 1px !important;
  height: 34px !important;
}

/* Spiral orbs — dampen on mobile */
@media (max-width: 768px) {
  .hero-orb, .hero-spiral { opacity: 0.4; }
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about.section { background: var(--p-surface) !important; }

.about h3 {
  font-family: var(--heading-font) !important;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem) !important;
  font-weight: 800 !important;
  color: var(--p-ink-900) !important;
  -webkit-text-fill-color: var(--p-ink-900) !important;
  background: none !important;
  letter-spacing: -0.024em !important;
  line-height: 1.2 !important;
  display: block !important;
  margin-bottom: 1.2rem !important;
}

.about p {
  font-size: 0.965rem !important;
  color: var(--p-ink-400) !important;
  line-height: 1.78 !important;
}

/* Info pills */
.info-pill {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: var(--p-border) !important;
  border-radius: var(--p-r-md) !important;
  padding: 14px 16px !important;
  box-shadow: var(--p-e2) !important;
  transition: var(--p-base) !important;
}

.info-pill:hover {
  border-color: rgba(0,134,201,0.28) !important;
  box-shadow: var(--p-eb) !important;
  transform: translateY(-3px) !important;
}

.info-pill .pill-icon {
  width: 36px !important;
  height: 36px !important;
  background: var(--p-brand-light) !important;
  border-radius: 9px !important;
  color: var(--p-brand) !important;
  font-size: 0.95rem !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--p-fast) !important;
}

.info-pill:hover .pill-icon {
  background: var(--p-brand) !important;
  color: #fff !important;
  transform: scale(1.04) !important;
}

.col-md-6:nth-child(2) .info-pill .pill-icon,
.col-md-6:nth-child(3) .info-pill .pill-icon {
  background: var(--p-amber-light) !important;
  color: var(--p-amber-dark) !important;
}

.col-md-6:nth-child(2) .info-pill:hover .pill-icon,
.col-md-6:nth-child(3) .info-pill:hover .pill-icon {
  background: var(--p-amber) !important;
  color: #fff !important;
}

.info-pill strong {
  display: block !important;
  font-size: 0.67rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.9px !important;
  color: var(--p-ink-200) !important;
  margin-bottom: 3px !important;
}

.info-pill p {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--p-ink-900) !important;
  margin: 0 !important;
}

/* Collage images */
.hc-item {
  border-radius: var(--p-r-md) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  box-shadow: var(--p-e3) !important;
  overflow: hidden !important;
}

.hc-item:hover {
  box-shadow: var(--p-e4) !important;
  transform: scale(1.025) !important;
}

.hc-label {
  background: rgba(4,8,22,0.72) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  border-radius: 6px !important;
}

/* ── SERVICES SECTION ────────────────────────────────────── */
.svc-section.section {
  background: var(--p-surface-alt) !important;
}

/* Cards — clean white, no glass */
.svc-card {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: var(--p-border) !important;
  border-top: 3px solid transparent !important;
  border-radius: var(--p-r-md) !important;
  padding: 28px 24px 22px !important;
  box-shadow: var(--p-e2) !important;
  transition: var(--p-slow) !important;
}

.svc-card:hover {
  border-color: rgba(0,134,201,0.18) !important;
  border-top: 3px solid var(--p-brand) !important;
  box-shadow: var(--p-e4) !important;
  transform: translateY(-6px) !important;
  background: var(--p-surface) !important;
}

/* Even svc-cards: amber accent on hover */
.col-lg-3:nth-child(even) .svc-card:not(.svc-card--featured):hover {
  border-top-color: var(--p-amber) !important;
  border-color: rgba(245,158,11,0.16) !important;
  box-shadow: var(--p-ea2) !important;
}

/* Featured dark cards */
.svc-card--featured {
  background: var(--p-dark-card) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-top: 3px solid rgba(56,189,248,0.50) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22) !important;
}

.svc-card--featured:hover {
  border-top-color: rgba(56,189,248,0.80) !important;
  border-color: rgba(255,255,255,0.11) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.32) !important;
  transform: translateY(-8px) !important;
  background: var(--p-dark-card) !important;
}

/* Icon */
.svc-card-icon {
  width: 48px !important;
  height: 48px !important;
  background: var(--p-brand-light) !important;
  border-radius: 11px !important;
  font-size: 20px !important;
  color: var(--p-brand) !important;
  box-shadow: none !important;
  transition: var(--p-fast) !important;
}

.svc-card:not(.svc-card--featured):hover .svc-card-icon {
  background: var(--p-brand) !important;
  color: #fff !important;
  transform: scale(1.06) !important;
  box-shadow: var(--p-eb) !important;
}

.col-lg-3:nth-child(even) .svc-card:not(.svc-card--featured) .svc-card-icon {
  background: var(--p-amber-light) !important;
  color: var(--p-amber-dark) !important;
}

.col-lg-3:nth-child(even) .svc-card:not(.svc-card--featured):hover .svc-card-icon {
  background: var(--p-amber) !important;
  color: #fff !important;
  box-shadow: var(--p-ea) !important;
}

.svc-card--featured .svc-card-icon {
  background: rgba(255,255,255,0.09) !important;
  color: #93c5fd !important;
  border: none !important;
}

.svc-card--featured:hover .svc-card-icon {
  background: rgba(255,255,255,0.16) !important;
  transform: scale(1.06) !important;
}

/* Ghost number */
.svc-card-num {
  font-size: 60px !important;
  font-weight: 900 !important;
  color: rgba(0,0,0,0.028) !important;
  top: 16px !important;
  right: 18px !important;
}

.svc-card--featured .svc-card-num { color: rgba(255,255,255,0.055) !important; }

/* Text */
.svc-card-title {
  font-family: var(--heading-font) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--p-ink-900) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.4 !important;
}

.svc-card--featured .svc-card-title { color: #fff !important; }

.svc-card-desc {
  font-size: 13.5px !important;
  color: var(--p-ink-300) !important;
  line-height: 1.68 !important;
}

.svc-card--featured .svc-card-desc { color: rgba(255,255,255,0.55) !important; }

.svc-card-list { border-top: var(--p-border) !important; }
.svc-card--featured .svc-card-list { border-top-color: rgba(255,255,255,0.10) !important; }

.svc-card-list li {
  font-size: 13px !important;
  color: var(--p-ink-400) !important;
}

.svc-card-list li::before {
  background: var(--p-brand) !important;
  width: 5px !important;
  height: 5px !important;
}

.col-lg-3:nth-child(even) .svc-card:not(.svc-card--featured) .svc-card-list li::before {
  background: var(--p-amber) !important;
}

.svc-card--featured .svc-card-list li { color: rgba(255,255,255,0.65) !important; }
.svc-card--featured .svc-card-list li::before { background: #60a5fa !important; }

/* Badge */
.svc-card-badge {
  background: var(--p-brand-light) !important;
  color: var(--p-brand) !important;
  border: 1px solid rgba(0,134,201,0.22) !important;
  border-radius: var(--p-r-pill) !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}

/* ── HIGHLIGHTS STRIP ────────────────────────────────────── */
.highlights-strip {
  background: var(--p-dark) !important;
  padding: 3.2rem 0 !important;
}

.highlights-strip::before { display: none !important; }

.highlights-strip .stat-item {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--p-r-md) !important;
  padding: 22px 24px !important;
  backdrop-filter: none !important;
  transition: var(--p-fast) !important;
}

.highlights-strip .stat-item:hover {
  background: rgba(255,255,255,0.09) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

/* Override per-item amber tints — keep but unify opacity */
.highlights-strip .col-6:nth-child(2) .stat-item,
.highlights-strip .col-md-3:nth-child(2) .stat-item,
.highlights-strip .col-6:nth-child(4) .stat-item,
.highlights-strip .col-md-3:nth-child(4) .stat-item {
  background: rgba(245,158,11,0.08) !important;
  border-color: rgba(245,158,11,0.16) !important;
}

.highlights-strip .stat-value {
  font-family: var(--heading-font) !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.03em !important;
}

.highlights-strip .col-6:nth-child(2) .stat-value,
.highlights-strip .col-md-3:nth-child(2) .stat-value,
.highlights-strip .col-6:nth-child(4) .stat-value,
.highlights-strip .col-md-3:nth-child(4) .stat-value {
  color: #fde68a !important;
}

.highlights-strip .stat-label {
  font-family: var(--default-font) !important;
  font-size: 0.69rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.38) !important;
  opacity: 1 !important;
  margin-top: 6px !important;
}

/* ── ADVANTAGE CARDS ─────────────────────────────────────── */
.features.section { background: var(--p-surface) !important; }

.advantage-card {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: var(--p-border) !important;
  border-radius: var(--p-r-md) !important;
  padding: 28px 24px !important;
  box-shadow: var(--p-e2) !important;
  transition: var(--p-slow) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Remove old pseudo-elements */
.advantage-card::before,
.col-md-6:nth-child(even) .advantage-card::before,
.col-lg-4:nth-child(even) .advantage-card::before {
  display: none !important;
}

/* Left accent bar */
.advantage-card::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 18% !important;
  bottom: 18% !important;
  width: 3px !important;
  background: var(--p-brand) !important;
  border-radius: 0 3px 3px 0 !important;
  transform: scaleY(0) !important;
  transform-origin: center !important;
  transition: transform 0.24s cubic-bezier(0.22,1,0.36,1) !important;
}

.col-md-6:nth-child(even) .advantage-card::after,
.col-lg-4:nth-child(even) .advantage-card::after {
  background: var(--p-amber) !important;
}

.advantage-card:hover::after { transform: scaleY(1) !important; }

.advantage-card:hover {
  border-color: rgba(0,134,201,0.20) !important;
  box-shadow: var(--p-e3) !important;
  transform: translateY(-4px) !important;
}

.col-md-6:nth-child(even) .advantage-card:hover {
  border-color: rgba(245,158,11,0.20) !important;
  box-shadow: var(--p-ea) !important;
}

/* Icon */
.advantage-card .advantage-icon {
  width: 52px !important;
  height: 52px !important;
  background: var(--p-brand-light) !important;
  border-radius: var(--p-r-sm) !important;
  font-size: 1.4rem !important;
  color: var(--p-brand) !important;
  -webkit-text-fill-color: var(--p-brand) !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  transition: var(--p-fast) !important;
  box-shadow: none !important;
}

.advantage-card:hover .advantage-icon {
  background: var(--p-brand) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: scale(1.08) !important;
  box-shadow: var(--p-eb) !important;
}

.col-md-6:nth-child(even) .advantage-card .advantage-icon,
.col-lg-4:nth-child(even) .advantage-card .advantage-icon {
  background: var(--p-amber-light) !important;
  color: var(--p-amber-dark) !important;
  -webkit-text-fill-color: var(--p-amber-dark) !important;
}

.col-md-6:nth-child(even) .advantage-card:hover .advantage-icon,
.col-lg-4:nth-child(even) .advantage-card:hover .advantage-icon {
  background: var(--p-amber) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: var(--p-ea) !important;
}

.advantage-card h5 {
  font-family: var(--heading-font) !important;
  font-size: 1.0rem !important;
  font-weight: 700 !important;
  color: var(--p-ink-900) !important;
  margin-bottom: 8px !important;
}

.advantage-card p {
  font-size: 0.875rem !important;
  color: var(--p-ink-300) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* Italic intro */
.features .tab-pane .fst-italic,
.about .fst-italic {
  font-size: 0.95rem !important;
  color: var(--p-ink-400) !important;
  font-style: italic !important;
  border-left: 3px solid var(--p-brand) !important;
  padding-left: 1.1rem !important;
  line-height: 1.75 !important;
  margin-bottom: 2rem !important;
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
#process.section,
#process.section.light-background {
  background: var(--p-surface-alt) !important;
}

.process-steps::before {
  background: var(--p-ink-100) !important;
  height: 1px !important;
  opacity: 1 !important;
}

.process-step .step-icon {
  width: 64px !important;
  height: 64px !important;
  background: var(--p-surface) !important;
  border: 1.5px solid var(--p-ink-100) !important;
  border-radius: 50% !important;
  font-size: 1.3rem !important;
  color: var(--p-brand) !important;
  box-shadow: var(--p-e2), 0 0 0 6px rgba(0,134,201,0.05) !important;
  transition: var(--p-fast) !important;
}

.process-step:nth-child(even) .step-icon {
  color: var(--p-amber-dark) !important;
  box-shadow: var(--p-e2), 0 0 0 6px rgba(245,158,11,0.06) !important;
}

.process-step:hover .step-icon {
  background: var(--p-brand) !important;
  color: #fff !important;
  border-color: var(--p-brand) !important;
  box-shadow: var(--p-eb), 0 0 0 8px rgba(0,134,201,0.10) !important;
  transform: translateY(-4px) scale(1.04) !important;
}

.process-step:nth-child(even):hover .step-icon {
  background: var(--p-amber) !important;
  color: #fff !important;
  border-color: var(--p-amber) !important;
  box-shadow: var(--p-ea), 0 0 0 8px rgba(245,158,11,0.09) !important;
}

.process-step .step-number {
  width: 20px !important;
  height: 20px !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  background: var(--p-brand) !important;
  box-shadow: none !important;
  border-radius: 50% !important;
}

.process-step:nth-child(even) .step-number {
  background: var(--p-amber) !important;
}

.process-step h5 {
  font-family: var(--heading-font) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--p-ink-900) !important;
  margin-bottom: 6px !important;
}

.process-step p {
  font-size: 0.8rem !important;
  color: var(--p-ink-300) !important;
  line-height: 1.58 !important;
}

/* ── PRICING ─────────────────────────────────────────────── */
#pricing.section,
#pricing.section.light-background {
  background: var(--p-surface-alt) !important;
}

.pricing-card {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: var(--p-border) !important;
  border-top: 3px solid var(--p-brand) !important;
  border-radius: var(--p-r-lg) !important;
  padding: 2.2rem 1.8rem !important;
  box-shadow: var(--p-e2) !important;
  transition: var(--p-slow) !important;
}

.pricing-card:hover {
  border-color: rgba(0,134,201,0.20) !important;
  box-shadow: var(--p-eb2) !important;
  transform: translateY(-6px) !important;
  background: var(--p-surface) !important;
}

/* 1st and 3rd card: amber */
#pricing .row > div:nth-child(1) .pricing-card:not(.pricing-featured),
#pricing .row > div:nth-child(3) .pricing-card:not(.pricing-featured) {
  border-top: 3px solid var(--p-amber) !important;
}

#pricing .row > div:nth-child(1) .pricing-card:not(.pricing-featured):hover,
#pricing .row > div:nth-child(3) .pricing-card:not(.pricing-featured):hover {
  border-color: rgba(245,158,11,0.18) !important;
  box-shadow: var(--p-ea2) !important;
}

/* Featured */
.pricing-card.pricing-featured {
  background: var(--p-dark) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-top: 3px solid var(--p-brand) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.24), 0 2px 8px rgba(0,0,0,0.12) !important;
  color: #fff !important;
}

.pricing-card.pricing-featured:hover {
  border-top-color: #38bdf8 !important;
  box-shadow: 0 20px 58px rgba(0,0,0,0.30), 0 4px 14px rgba(0,134,201,0.18) !important;
  transform: translateY(-10px) !important;
  background: var(--p-dark-card) !important;
}

.pricing-card.pricing-featured h4 { color: rgba(255,255,255,0.72) !important; font-size: 1.0rem !important; }

.pricing-card .pricing-icon {
  width: 60px !important;
  height: 60px !important;
  font-size: 1.8rem !important;
  background: var(--p-brand-light) !important;
  border-radius: var(--p-r-md) !important;
  box-shadow: none !important;
  transition: var(--p-fast) !important;
  color: var(--p-brand) !important;
}

#pricing .row > div:nth-child(1) .pricing-card .pricing-icon,
#pricing .row > div:nth-child(3) .pricing-card .pricing-icon {
  background: var(--p-amber-light) !important;
  color: var(--p-amber-dark) !important;
}

.pricing-card.pricing-featured .pricing-icon {
  background: rgba(255,255,255,0.09) !important;
  color: #93c5fd !important;
}

.pricing-card:hover .pricing-icon { transform: scale(1.08) !important; }

.pricing-card .price-value {
  font-family: var(--heading-font) !important;
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  color: var(--p-ink-900) !important;
  -webkit-text-fill-color: var(--p-ink-900) !important;
  background: none !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
}

#pricing .row > div:nth-child(1) .pricing-card .price-value,
#pricing .row > div:nth-child(3) .pricing-card .price-value {
  color: var(--p-amber-dark) !important;
  -webkit-text-fill-color: var(--p-amber-dark) !important;
}

.pricing-card.pricing-featured .price-value {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}

.pricing-card .price-unit { color: var(--p-ink-200) !important; font-size: 0.85rem !important; }
.pricing-card p          { color: var(--p-ink-300) !important; font-size: 0.875rem !important; }

.pricing-card.pricing-featured .price-unit,
.pricing-card.pricing-featured p { color: rgba(255,255,255,0.50) !important; }

.popular-badge {
  background: var(--p-brand) !important;
  color: #fff !important;
  font-size: 0.64rem !important;
  font-weight: 700 !important;
  border-radius: var(--p-r-pill) !important;
  box-shadow: none !important;
  letter-spacing: 1.1px !important;
  padding: 4px 16px !important;
}

/* Pricing CTA */
.pricing-btn {
  background: var(--p-brand) !important;
  border-radius: var(--p-r-sm) !important;
  padding: 11px 26px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  box-shadow: var(--p-eb) !important;
  transition: var(--p-fast) !important;
}

.pricing-btn:hover {
  background: var(--p-brand-hover) !important;
  box-shadow: var(--p-eb2) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

.pricing-btn:active { transform: scale(0.97) translateY(0) !important; }

.pricing-card.pricing-featured .pricing-btn {
  background: rgba(255,255,255,0.11) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.pricing-card.pricing-featured .pricing-btn:hover {
  background: rgba(255,255,255,0.20) !important;
  border-color: rgba(255,255,255,0.36) !important;
  box-shadow: none !important;
}

/* ── LEADER / TEAM CARDS ─────────────────────────────────── */
#team.section { background: var(--p-surface) !important; }

.leader-card {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background-image: none !important;
  background-origin: unset !important;
  background-clip: unset !important;
  border: var(--p-border) !important;
  border-bottom: 3px solid transparent !important;
  border-radius: var(--p-r-lg) !important;
  padding: 2.8rem 2rem !important;
  box-shadow: var(--p-e2) !important;
  transition: var(--p-slow) !important;
}

.leader-card:hover {
  border-color: rgba(0,134,201,0.18) !important;
  border-bottom-color: var(--p-brand) !important;
  box-shadow: var(--p-eb2) !important;
  transform: translateY(-6px) !important;
  background: var(--p-surface) !important;
  background-image: none !important;
}

/* First leader: amber bottom */
.col-lg-5:nth-child(1) .leader-card,
.col-md-6:nth-child(1) .leader-card {
  background-image: none !important;
  border-bottom-color: transparent !important;
}

.col-lg-5:nth-child(1) .leader-card:hover,
.col-md-6:nth-child(1) .leader-card:hover {
  border-bottom-color: var(--p-amber) !important;
  border-color: rgba(245,158,11,0.16) !important;
  box-shadow: var(--p-ea2) !important;
  background-image: none !important;
}

.leader-card .leader-avatar {
  width: 88px !important;
  height: 88px !important;
  background: var(--p-brand-light) !important;
  border: 1.5px solid var(--p-ink-100) !important;
  border-radius: 50% !important;
  font-size: 3.5rem !important;
  color: var(--p-brand) !important;
  margin-bottom: 1.2rem !important;
  transition: var(--p-fast) !important;
}

.leader-card:hover .leader-avatar {
  background: var(--p-brand) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: var(--p-eb) !important;
  transform: scale(1.04) !important;
}

.col-lg-5:nth-child(1) .leader-card .leader-avatar,
.col-md-6:nth-child(1) .leader-card .leader-avatar {
  background: var(--p-amber-light) !important;
  color: var(--p-amber-dark) !important;
}

.col-lg-5:nth-child(1) .leader-card:hover .leader-avatar,
.col-md-6:nth-child(1) .leader-card:hover .leader-avatar {
  background: var(--p-amber) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: var(--p-ea) !important;
}

.leader-card h4 {
  font-family: var(--heading-font) !important;
  font-size: 1.2rem !important;
  color: var(--p-ink-900) !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 4px !important;
}

.leader-card .leader-role {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  color: var(--p-brand) !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  margin-bottom: 1.6rem !important;
}

.col-lg-5:nth-child(1) .leader-card .leader-role,
.col-md-6:nth-child(1) .leader-card .leader-role {
  color: var(--p-amber-dark) !important;
}

.leader-card .leader-contact a {
  background: rgba(0,134,201,0.04) !important;
  border: 1px solid rgba(0,134,201,0.10) !important;
  border-radius: var(--p-r-sm) !important;
  padding: 9px 14px !important;
  font-size: 0.875rem !important;
  color: var(--p-ink-400) !important;
  width: 100% !important;
  justify-content: center !important;
  transition: var(--p-fast) !important;
}

.leader-card .leader-contact a:hover {
  background: rgba(0,134,201,0.09) !important;
  border-color: rgba(0,134,201,0.25) !important;
  color: var(--p-brand) !important;
  transform: none !important;
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact.section,
#contact.section.light-background {
  background: var(--p-surface-alt) !important;
}

.contact .info-item {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: var(--p-border) !important;
  border-radius: var(--p-r-md) !important;
  padding: 28px 20px !important;
  box-shadow: var(--p-e2) !important;
  transition: var(--p-slow) !important;
}

.contact .info-item:hover {
  border-color: rgba(0,134,201,0.22) !important;
  box-shadow: var(--p-eb) !important;
  transform: translateY(-3px) !important;
  background: var(--p-surface) !important;
}

.contact .info-item:nth-child(2):hover {
  border-color: rgba(0,134,201,0.22) !important;
  box-shadow: var(--p-eb) !important;
}

.contact .info-item i {
  background: var(--p-brand-light) !important;
  border: 1.5px solid rgba(0,134,201,0.15) !important;
  border-radius: var(--p-r-sm) !important;
  color: var(--p-brand) !important;
  transition: var(--p-fast) !important;
  box-shadow: none !important;
}

.contact .info-item:hover i {
  background: var(--p-brand) !important;
  color: #fff !important;
  border-color: var(--p-brand) !important;
  transform: scale(1.06) !important;
  box-shadow: var(--p-eb) !important;
}

.contact .info-item:nth-child(2) i {
  background: var(--p-brand-light) !important;
  border-color: rgba(0,134,201,0.15) !important;
  color: var(--p-brand) !important;
}

.contact .info-item:nth-child(2):hover i {
  background: var(--p-brand) !important;
  box-shadow: var(--p-eb) !important;
  border-color: var(--p-brand) !important;
}

.contact .info-item h3 {
  font-family: var(--heading-font) !important;
  font-size: 1.0rem !important;
  font-weight: 700 !important;
  color: var(--p-ink-900) !important;
}

.contact .info-item p {
  font-size: 0.9rem !important;
  color: var(--p-ink-400) !important;
}

/* Contact form */
.contact .php-email-form {
  background: var(--p-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: var(--p-border) !important;
  border-radius: var(--p-r-lg) !important;
  padding: 36px 32px !important;
  box-shadow: var(--p-e3) !important;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea,
.contact .php-email-form select {
  background: var(--p-surface) !important;
  border: 1.5px solid var(--p-ink-100) !important;
  border-radius: 9px !important;
  padding: 11px 14px !important;
  font-size: 14.5px !important;
  font-family: var(--default-font) !important;
  color: var(--p-ink-900) !important;
  transition: var(--p-fast) !important;
  box-shadow: none !important;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--p-brand) !important;
  box-shadow: 0 0 0 3px rgba(0,134,201,0.12) !important;
  background: var(--p-surface) !important;
  outline: none !important;
}

.contact .php-email-form button[type="submit"] {
  background: var(--p-brand) !important;
  border-radius: 9px !important;
  padding: 13px 40px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  box-shadow: var(--p-eb) !important;
  border: none !important;
  transition: var(--p-fast) !important;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--p-brand-hover) !important;
  box-shadow: var(--p-eb2) !important;
  transform: translateY(-2px) !important;
}

.contact .php-email-form button[type="submit"]:active {
  transform: scale(0.97) !important;
}

/* ── ANNEX BOX ───────────────────────────────────────────── */
.annex-box {
  background: var(--p-surface) !important;
  border: var(--p-border) !important;
  border-radius: var(--p-r-lg) !important;
  padding: 2.6rem 2.2rem !important;
  box-shadow: var(--p-e3) !important;
}

.annex-box h5 {
  font-family: var(--heading-font) !important;
  font-size: 1.1rem !important;
  color: var(--p-ink-900) !important;
}

.annex-box > p {
  color: var(--p-ink-300) !important;
  font-size: 0.9rem !important;
}

.annex-tag {
  background: var(--p-ink-30) !important;
  border: var(--p-border) !important;
  border-radius: var(--p-r-sm) !important;
  padding: 6px 14px !important;
  font-size: 0.82rem !important;
  color: var(--p-ink-400) !important;
  transition: var(--p-fast) !important;
  box-shadow: none !important;
}

.annex-tag:hover {
  background: var(--p-surface) !important;
  border-color: rgba(0,134,201,0.25) !important;
  color: var(--p-brand) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--p-e2) !important;
}

/* ── PHP EMAIL FORM MESSAGES ─────────────────────────────── */
.php-email-form .error-message {
  border-radius: var(--p-r-sm);
  background: #fef2f2 !important;
  color: #dc2626 !important;
  border-left: 4px solid #dc2626;
  border-top: none; border-right: none; border-bottom: none;
}

.php-email-form .sent-message {
  border-radius: var(--p-r-sm);
  background: #f0fdf4 !important;
  color: #16a34a !important;
  border-left: 4px solid #16a34a;
  border-top: none; border-right: none; border-bottom: none;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, #060c1a 0%, #050a14 70%, #03070d 100%) !important;
}

.footer::before { display: none !important; }

.footer .social-links a {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: var(--p-r-sm) !important;
  transition: var(--p-fast) !important;
  backdrop-filter: none !important;
}

.footer .social-links a:hover {
  background: var(--p-brand) !important;
  border-color: var(--p-brand) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--p-eb) !important;
}

.footer .footer-newsletter .newsletter-form {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--p-r-sm) !important;
  backdrop-filter: none !important;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--p-brand) !important;
  box-shadow: 0 0 0 3px rgba(0,134,201,0.14) !important;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  background: var(--p-brand) !important;
  font-weight: 600 !important;
  border-radius: 0 6px 6px 0 !important;
}

/* ── SCROLL TOP ──────────────────────────────────────────── */
.scroll-top {
  background: var(--p-dark) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  box-shadow: var(--p-e3) !important;
  transition: var(--p-fast) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.scroll-top:hover {
  background: var(--p-brand) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--p-eb) !important;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  section, .section { padding: var(--p-section-sm) 0 !important; }
  .section-title { padding-bottom: 44px !important; }
  .hero { padding: 120px 0 80px !important; }
  .contact .php-email-form { padding: 24px 18px !important; }
  .annex-box { padding: 1.8rem 1.2rem !important; }
  .leader-card { padding: 2rem 1.5rem !important; }
  .pricing-card { padding: 1.8rem 1.4rem !important; }
  .svc-card { padding: 22px 18px 18px !important; }
}

@media (max-width: 576px) {
  .hero-stats { padding: 14px 16px !important; }
  .highlights-strip { padding: 2.5rem 0 !important; }
  .hero h2 { letter-spacing: -0.025em !important; }
}
