/* 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*/
:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #273d4e; 
  --accent-color: #13294b; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors */
:root {
  --nav-color: #e5eaee;  
  --nav-hover-color: #6f9bd6; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #13294b; 
}

/* Color Presets */

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

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
  /* Lighter steel-blue so the navy accent stays legible over dark surfaces */
  --accent-color: #6f9bd6;
}

:root {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --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: 50px;
  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: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@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(21, 34, 43, 0.85);
}

/*--------------------------------------------------------------
# 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-color: var(--background-color);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer .footer-glow {
  position: absolute;
  z-index: -1;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 120%;
  height: 380px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 78%), transparent 75%);
  pointer-events: none;
}

.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 10px;
}

/* CTA band */
.footer .footer-cta {
  position: relative;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 36px 44px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000 10%) 0%, #0b1a33 60%, #0a1426 100%);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.footer .footer-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 55%), transparent 70%);
  pointer-events: none;
}

.footer .footer-cta-text {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.footer .footer-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: color-mix(in srgb, #fff, transparent 86%);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.footer .footer-cta-text h3 {
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.footer .footer-cta-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, #fff, transparent 28%);
}

.footer .footer-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0a1426;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
}

.footer .footer-cta-btn:hover {
  color: #0a1426;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(0, 0, 0, 0.55);
}

.footer .footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.footer .footer-cta-link i {
  transition: transform 0.3s ease;
}

.footer .footer-cta-link:hover {
  color: #fff;
}

.footer .footer-cta-link:hover i {
  transform: translateX(5px);
}

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

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

.footer .footer-about .logo 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-label {
  display: block;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 22px;
}

.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;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer .footer-about .logo img {
  max-height: 50px;
}

.footer .footer-about-desc {
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 0 22px 0;
}

.footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.footer .footer-contact-list i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
}

.footer .footer-contact-list a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.footer .footer-contact-list a:hover {
  color: var(--accent-color);
}

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

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--accent-color);
}

.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 .footer-newsletter > p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 16px;
  margin-bottom: 22px;
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 50px;
  padding: 6px 6px 6px 14px;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  background-color: transparent;
  color: #fff;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  margin: -6px -6px -6px 0;
  padding: 0 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.footer .footer-newsletter .social-label {
  margin-top: 8px;
}

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

.footer .footer-bottom-inner {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  flex-wrap: wrap;
}

.footer .footer-bottom .copyright-text {
  margin: 0;
  font-size: 13.5px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.footer .footer-bottom .copyright-text .sitename {
  color: #fff;
}

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .credits strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits-sep {
  margin: 0 6px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer .footer-cta {
    padding: 30px 26px;
  }

  .footer .footer-cta-text h3 {
    font-size: 22px;
  }

  .footer .footer-cta-actions {
    width: 100%;
  }

  .footer .footer-cta-btn {
    width: 100%;
  }

  .footer .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# 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: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  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;
}

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

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.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: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  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;
  }
}

/*--------------------------------------------------------------
# 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: 18px;
  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: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Header logo tagline (DoliERP por BROUTER®)
--------------------------------------------------------------*/
.header .logo .logo-by {
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  align-self: center;
}

@media (max-width: 575px) {
  .header .logo .logo-by {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section (atmosphere + app preview, no images)
--------------------------------------------------------------*/
#hero {
  background-color: #000910;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  isolation: isolate;
}

#hero:before {
  display: none;
}

/* Background layer — holds the video background.
   The gradient acts as a fallback / base tone while the video loads. */
#hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #000910;
  background-image:
    radial-gradient(70% 80% at 88% 0%, color-mix(in srgb, var(--accent-color), transparent 80%), transparent 60%),
    radial-gradient(60% 70% at 0% 100%, color-mix(in srgb, var(--accent-color), transparent 90%), transparent 60%),
    linear-gradient(180deg, #00161f 0%, #000910 65%);
}

#hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle technical grid (kept light so an animated bg stays visible) */
#hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--default-color), transparent 95%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--default-color), transparent 95%) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 65% at 50% 40%, #000 0%, transparent 80%);
  mask-image: radial-gradient(70% 65% at 50% 40%, #000 0%, transparent 80%);
  opacity: 0.4;
}

/* Readability scrim: a centred vignette + vertical fade so the copy stays
   crisp while keeping the animated video visible around the edges. */
#hero .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 9, 16, 0.92) 0%, rgba(0, 9, 16, 0.78) 28%, rgba(0, 9, 16, 0.4) 58%, rgba(0, 9, 16, 0.12) 82%, rgba(0, 9, 16, 0) 100%),
    linear-gradient(180deg, rgba(0, 9, 16, 0.55) 0%, rgba(0, 9, 16, 0.1) 35%, rgba(0, 9, 16, 0.2) 70%, rgba(0, 9, 16, 0.8) 100%);
}

@media (max-width: 991px) {
  #hero .hero-scrim {
    background: linear-gradient(180deg, rgba(0, 9, 16, 0.7) 0%, rgba(0, 9, 16, 0.45) 45%, rgba(0, 9, 16, 0.85) 100%);
  }
}

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

/* --- Left-weighted editorial copy --- */
.hero-content {
  max-width: 660px;
  margin: 0;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 22px;
}

.hero-eyebrow-line {
  width: 34px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

#hero h1 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin: 0 0 22px 0;
  text-shadow: 0 2px 30px rgba(0, 9, 16, 0.45);
}

#hero h1 .accent {
  color: var(--accent-color);
  position: relative;
  white-space: nowrap;
}

#hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 4px;
  z-index: -1;
}

.hero-content p {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 19px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 34px 0;
  text-shadow: 0 1px 18px rgba(0, 9, 16, 0.5);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 38px;
}

/* Key figures strip */
.hero-stats {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-stat {
  position: relative;
  padding-left: 22px;
}

.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: var(--accent-color);
}

.hero-stat strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  line-height: 1.1;
}

.hero-stat span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-cta .btn-get-started {
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.hero-cta .btn-watch-video {
  color: var(--default-color);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  transition: color 0.3s ease;
}

.hero-scroll:hover {
  color: var(--default-color);
}

.hero-scroll-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 55%);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.hero-scroll-mouse span {
  width: 4px;
  height: 7px;
  border-radius: 4px;
  background: var(--accent-color);
  animation: heroScrollDot 1.6s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* --- App preview --- */
.hero-visual {
  position: relative;
  perspective: 1600px;
}

.hero-app-float {
  will-change: transform;
  animation: hero-app-float 6s ease-in-out infinite alternate;
}

.hero-app {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 23, 30, 0.92), rgba(8, 13, 18, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: rotateY(-9deg) rotateX(5deg);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.6s ease;
}

/* Light sweep that travels across the card on hover */
.hero-app::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.07) 47%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.07) 53%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .hero-app {
  transform: rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.015);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.68),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 72%),
    0 30px 90px color-mix(in srgb, var(--accent-color), transparent 82%),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-visual:hover .hero-app::after {
  transform: translateX(130%);
}

/* Freeze the float while hovering for a stable, deliberate state */
.hero-visual:hover .hero-app-float {
  animation-play-state: paused;
}

@keyframes hero-app-float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -14px, 0);
  }
}

.hero-app-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-app-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-app-bar .dot:first-child {
  background: var(--accent-color);
}

.hero-app-url {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nav-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 50px;
}

.hero-app-url i {
  font-size: 10px;
  color: #4ade80;
}

.hero-app-body {
  display: flex;
  min-height: 320px;
}

.hero-app-side {
  flex: 0 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-app-side .side-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.hero-app-side .side-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  transition: 0.3s;
}

.hero-app-side .side-ico.active {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
}

.hero-app-main {
  flex: 1 1 auto;
  padding: 18px 20px;
  min-width: 0;
}

.app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-head .app-title {
  display: block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.app-head .app-sub {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.app-kpis .kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 12px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.app-kpis .kpi-label {
  display: block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.app-kpis .kpi-val {
  display: block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  line-height: 1;
}

.app-kpis .kpi-trend {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
}

.app-kpis .kpi-trend.up {
  color: #4ade80;
}

.app-kpis .kpi-trend i {
  font-size: 14px;
}

.app-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 16px 12px;
  margin-bottom: 14px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.chart-title {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}

.chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
}

.chart-legend .lg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 76px;
}

.chart-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform-origin: bottom;
  animation: chart-grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: background 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.chart-bars span:nth-child(1) { animation-delay: 0.1s; }
.chart-bars span:nth-child(2) { animation-delay: 0.18s; }
.chart-bars span:nth-child(3) { animation-delay: 0.26s; }
.chart-bars span:nth-child(4) { animation-delay: 0.34s; }
.chart-bars span:nth-child(5) { animation-delay: 0.42s; }
.chart-bars span:nth-child(6) { animation-delay: 0.5s; }
.chart-bars span:nth-child(7) { animation-delay: 0.58s; }

.chart-bars span.is-peak {
  background: var(--accent-color);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@keyframes chart-grow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  padding: 9px 12px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, border-color 0.45s ease;
}

.app-row .ar-ico {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-row .ar-ico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.app-row .ar-ico.ok {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  color: var(--accent-color);
}

.app-row .ar-ico.new {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.app-row .ar-text {
  flex: 1 1 auto;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-row .ar-amt {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.app-row .ar-amt.muted {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

/* --- Coordinated hover on the dashboard mockup --- */
.hero-visual:hover .app-kpis .kpi {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.hero-visual:hover .app-kpis .kpi:nth-child(1) { transition-delay: 0.04s; }
.hero-visual:hover .app-kpis .kpi:nth-child(2) { transition-delay: 0.1s; }
.hero-visual:hover .app-kpis .kpi:nth-child(3) { transition-delay: 0.16s; }

.hero-visual:hover .chart-bars span {
  background: color-mix(in srgb, var(--accent-color), transparent 45%);
  filter: saturate(1.15) brightness(1.08);
}

.hero-visual:hover .chart-bars span.is-peak {
  background: var(--accent-color);
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.hero-visual:hover .app-row {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-visual:hover .app-row:hover {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-visual:hover .app-row:hover .ar-ico {
  transform: scale(1.12);
}

.hero-visual:hover .hero-app-side .side-ico.active {
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent-color), transparent 55%);
}

/* Hero responsive */
@media (max-width: 1199px) {
  #hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  #hero {
    min-height: auto;
    padding: 140px 0 110px 0;
  }

  #hero h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 38px;
    letter-spacing: -0.5px;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta .btn-get-started,
  .hero-cta .btn-watch-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.3px;
  }

  .hero-cta .btn-watch-video {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 65%);
    background: color-mix(in srgb, var(--default-color), transparent 92%);
  }

  .hero-cta .btn-watch-video i {
    font-size: 18px;
    margin-right: 8px;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {

  #hero .hero-glow,
  .hero-scroll-mouse span {
    animation: none !important;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-header {
  margin-bottom: 36px;
  max-width: 820px;
}

.pricing .pricing-header h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 12px;
}

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

.pricing .pricing-header strong {
  color: var(--heading-color);
}

/* Stacked plan cards (radio-selectable, horizontal layout) */
.pricing .pricing-form-row {
  align-items: stretch;
}

.pricing .pricing-plans-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.pricing .plan-row {
  --plan-accent: var(--accent-color);
  display: flex;
  flex: 1 1 0;
  cursor: pointer;
  margin: 0;
}

.pricing .plan-row input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing .plan-row-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px -26px rgba(39, 61, 78, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing .plan-row:hover .plan-row-card {
  border-color: color-mix(in srgb, var(--plan-accent), transparent 55%);
  box-shadow: 0 20px 46px -26px color-mix(in srgb, var(--plan-accent), transparent 45%);
  transform: translateY(-3px);
}

.pricing .plan-row input[type=radio]:checked + .plan-row-card {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--plan-accent), 0 22px 50px -26px color-mix(in srgb, var(--plan-accent), transparent 45%);
}

.pricing .plan-row input[type=radio]:focus-visible + .plan-row-card {
  outline: 3px solid color-mix(in srgb, var(--plan-accent), transparent 50%);
  outline-offset: 2px;
}

.pricing .plan-row-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px;
}

.pricing .plan-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.pricing .plan-badge {
  background: var(--plan-accent);
  color: #fff;
  font-family: var(--nav-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.pricing .plan-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.pricing .plan-features-grid span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.pricing .plan-features-grid i {
  color: var(--plan-accent);
  font-size: 16px;
  position: relative;
  top: 2px;
  flex-shrink: 0;
}

.pricing .plan-row-price {
  flex: 0 0 38%;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 26px 22px;
  background: color-mix(in srgb, var(--plan-accent), transparent 94%);
  border-left: 1px solid color-mix(in srgb, var(--plan-accent), transparent 88%);
}

.pricing .plan-row-price .price {
  font-family: var(--heading-font);
  color: var(--plan-accent);
}

.pricing .plan-row-price .amount {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.pricing .plan-row-price sup {
  font-size: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 2px;
}

.pricing .plan-row-price .period {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 14px;
}

.pricing .plan-select-btn {
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid var(--plan-accent);
  color: var(--plan-accent);
  transition: 0.3s;
  white-space: nowrap;
}

.pricing .plan-row:hover .plan-select-btn {
  background: color-mix(in srgb, var(--plan-accent), transparent 88%);
}

.pricing .plan-row input[type=radio]:checked + .plan-row-card .plan-select-btn {
  background: var(--plan-accent);
  border-color: var(--plan-accent);
  color: #fff;
}

.pricing .plan-row input[type=radio]:checked + .plan-row-card .plan-select-btn::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}

@media (max-width: 575px) {
  .pricing .plan-row-card {
    flex-direction: column;
  }

  .pricing .plan-row-price {
    flex-basis: auto;
    max-width: none;
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

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

/* Add-ons (inside simulation panel) */
.pricing .summary-addons-controls {
  margin-top: 22px;
}

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

.pricing .addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 13px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .addon-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.pricing .addon-item label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  cursor: pointer;
  flex: 1 1 60%;
  min-width: 0;
}

.pricing .addon-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 6px;
  background-color: var(--surface-color);
  cursor: pointer;
  transition: 0.2s;
}

.pricing .addon-item input[type=checkbox]:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.pricing .addon-item input[type=checkbox]:checked::after {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--contrast-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pricing .addon-item input[type=checkbox]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  outline-offset: 2px;
}

.pricing .addon-item input[type=checkbox]:disabled {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  opacity: 0.6;
  cursor: default;
}

.pricing .addon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing .addon-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  line-height: 1.3;
}

.pricing .addon-desc {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .addon-control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pricing .addon-price {
  font-weight: 700;
  font-size: 13px;
  color: var(--heading-color);
  white-space: nowrap;
}

.pricing .addon-price.free {
  color: #0ea98f;
}

/* Included base modules (read-only chips) */
.pricing .modules-included {
  flex: 1 1 100%;
  margin-top: 6px;
}

.pricing .modules-included-toggle {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing .modules-included-toggle::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 11px;
  transition: transform 0.3s ease;
}

.pricing .modules-included-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Smooth expand/collapse via grid-template-rows trick */
.pricing .modules-included-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.3s ease;
}

.pricing .modules-included-body > .modules-chips {
  overflow: hidden;
  min-height: 0;
}

.pricing .modules-included.is-open .modules-included-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.pricing .modules-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
}

.pricing .modules-chips span {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

/* Additional modules picker (smooth expand/collapse) */
.pricing .addon-modules-panel {
  list-style: none;
  border-top: 0;
  padding: 0 0 0 33px;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.3s ease;
}

.pricing .addon-modules-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.pricing .addon-modules-panel > .modules-grid {
  overflow: hidden;
  min-height: 0;
}

.pricing .modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  padding: 4px 0 13px;
}

.pricing .module-pick {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  cursor: pointer;
  font-size: 12.5px;
  line-height: 1.3;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.pricing .module-pick input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 5px;
  background-color: var(--surface-color);
  cursor: pointer;
  transition: 0.2s;
}

.pricing .module-pick input[type=checkbox]:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.pricing .module-pick input[type=checkbox]:checked::after {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--contrast-color);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pricing .module-pick input[type=checkbox]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  outline-offset: 2px;
}

@media (max-width: 575px) {
  .pricing .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* Quantity stepper */
.pricing .qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  overflow: hidden;
}

.pricing .qty-stepper.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pricing .qty-btn {
  border: 0;
  background: transparent;
  width: 30px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  color: var(--accent-color);
  cursor: pointer;
  transition: 0.2s;
}

.pricing .qty-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.pricing .qty-stepper input[type=number] {
  width: 42px;
  border: 0;
  text-align: center;
  font-weight: 600;
  color: var(--heading-color);
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.pricing .qty-stepper input[type=number]::-webkit-outer-spin-button,
.pricing .qty-stepper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Dynamic summary */
.pricing .pricing-summary {
  background-color: var(--surface-color);
  border: 0;
  border-radius: 16px;
  scroll-margin-top: 96px;
  padding: 30px 28px;
  box-shadow: 0 26px 60px -32px rgba(39, 61, 78, 0.5);
}

@media (min-width: 992px) {
  .pricing .pricing-summary {
    position: sticky;
    top: 110px;
  }
}

.pricing .pricing-summary h3 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing .summary-label {
  display: block;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 8px;
}

.pricing .summary-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing .summary-plan-head strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 16px;
  color: var(--heading-color);
}

.pricing .summary-plan-head small {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.pricing .summary-plan-head #summary-plan-price {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
  white-space: nowrap;
}

.pricing .summary-breakdown {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 5px 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.pricing .breakdown-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
}

.pricing .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.pricing .summary-total span:first-child {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--heading-color);
}

.pricing .summary-total #summary-total-price {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-color);
  line-height: 1;
}

.pricing .breakdown-row small {
  font-size: 11.5px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.pricing .summary-recurring {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
}

.pricing .summary-recurring span:first-child {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 13.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .summary-recurring #summary-monthly-price {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--heading-color);
  white-space: nowrap;
}

.pricing .summary-note {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin: 14px 0 20px 0;
}

.pricing .summary-cta {
  display: block;
  text-align: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 20px;
  border-radius: 50px;
  transition: 0.3s;
}

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

.pricing .summary-cta.is-disabled {
  background: color-mix(in srgb, var(--default-color), transparent 78%);
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  cursor: not-allowed;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Section helpers (kicker / shared accents)
--------------------------------------------------------------*/
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.kicker .kicker-line {
  width: 34px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.kicker.kicker-light {
  color: color-mix(in srgb, #fff, transparent 15%);
}

.kicker.kicker-light .kicker-line {
  background: var(--accent-color);
}

.accent-text {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About — editorial split
--------------------------------------------------------------*/
.about .about-split {
  --about-gap: 60px;
  row-gap: 40px;
}

.about .about-media {
  position: relative;
  margin: 0;
  padding: 0 18px 18px 0;
}

.about .about-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -25px rgba(39, 61, 78, 0.45);
}

.about .about-media-frame {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 70%;
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 35%);
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 86%) 1.4px, transparent 1.6px) 0 0 / 16px 16px;
}

.about .about-media-tag {
  position: absolute;
  z-index: 3;
  left: -10px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface-color);
  box-shadow: 0 18px 40px -15px rgba(39, 61, 78, 0.5);
}

.about .about-media-tag i {
  font-size: 24px;
  color: var(--accent-color);
}

.about .about-media-tag strong {
  display: block;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1.2;
}

.about .about-media-tag span {
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .about-content {
  padding-left: 30px;
}

.about .about-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}

.about .about-content .lead-text {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  margin-bottom: 26px;
}

.about .about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.about .about-points li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.about .about-points li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.about .about-points i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.about .about-points strong {
  display: block;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 16px;
}

.about .about-points span {
  font-size: 14.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-family: var(--nav-font);
  color: var(--heading-color);
}

.about .about-link i {
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.about .about-link:hover {
  color: var(--accent-color);
}

.about .about-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 18px;
  }

  .about .about-media img {
    height: 380px;
  }
}

/*--------------------------------------------------------------
# Features — image + clean list (no cards)
--------------------------------------------------------------*/
.features-split .features-media {
  position: relative;
  margin: 0;
}

.features-split .features-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 30px 60px -28px rgba(39, 61, 78, 0.5);
}

.features-split .features-media::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 90px;
  height: 90px;
  border-radius: 16px 0 0 0;
  border-left: 3px solid var(--accent-color);
  border-top: 3px solid var(--accent-color);
}

.features-split .features-media-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 230px;
  padding: 16px 20px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--heading-color), transparent 8%);
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.55);
}

.features-split .features-media-badge .num {
  display: block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.features-split .features-media-badge .lbl {
  font-size: 12.5px;
  color: color-mix(in srgb, #fff, transparent 22%);
}

.features-split .feature-list {
  display: flex;
  flex-direction: column;
}

.features-split .feature-row {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 24px 20px;
  border-radius: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: background 0.3s ease;
}

.features-split .feature-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: var(--accent-color);
  transition: height 0.3s ease;
}

.features-split .feature-row:last-child {
  border-bottom: 0;
}

.features-split .feature-row:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.features-split .feature-row:hover::before {
  height: 58%;
}

.features-split .feature-ico {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: 0.35s;
}

.features-split .feature-row:hover .feature-ico {
  background: var(--accent-color);
  color: #fff;
}

.features-split .feature-body h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.features-split .feature-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

@media (max-width: 991px) {
  .features-split .features-media img {
    height: 340px;
  }
}

/*--------------------------------------------------------------
# Modules — tab content with media
--------------------------------------------------------------*/
.features .module-grid {
  row-gap: 36px;
}

.features .module-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.features .module-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.features .module-checks i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.features .module-media {
  position: relative;
  margin: 0;
}

.features .module-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 30px 55px -28px rgba(39, 61, 78, 0.5);
}

.features .module-media-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--accent-color), transparent 30%);
}

@media (max-width: 575px) {
  .features .module-checks {
    grid-template-columns: 1fr;
  }

  .features .module-media img {
    height: 260px;
  }
}

/*--------------------------------------------------------------
# Stats — immersive image band
--------------------------------------------------------------*/
.stats-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.stats-band .stats-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.stats-band .stats-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-band .stats-band-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 9, 16, 0.86) 0%, rgba(0, 9, 16, 0.78) 100%),
    radial-gradient(60% 80% at 85% 10%, color-mix(in srgb, var(--accent-color), transparent 78%), transparent 60%);
}

.stats-band .stats-band-head {
  text-align: center;
  margin-bottom: 46px;
}

.stats-band .stats-band-head h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

.stats-band .stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-band .stat-cell {
  text-align: center;
  padding: 10px 24px;
  position: relative;
}

.stats-band .stat-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: color-mix(in srgb, #fff, transparent 85%);
}

.stats-band .stat-cell i {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.stats-band .stat-cell .purecounter {
  display: block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.stats-band .stat-cell p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, #fff, transparent 28%);
}

@media (max-width: 768px) {
  .stats-band .stats-band-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }

  .stats-band .stat-cell:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .stats-band .stats-band-grid {
    grid-template-columns: 1fr;
  }

  .stats-band .stat-cell::after {
    display: none !important;
  }

  .stats-band .stat-cell {
    padding-bottom: 24px;
    border-bottom: 1px solid color-mix(in srgb, #fff, transparent 88%);
  }
}

/*--------------------------------------------------------------
# Contact — image panel + form
--------------------------------------------------------------*/
.contact .contact-panel {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}

.contact .contact-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.contact .contact-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, color-mix(in srgb, var(--heading-color), transparent 25%) 0%, rgba(0, 9, 16, 0.92) 100%);
}

.contact .contact-panel-content {
  padding: 38px 34px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .contact-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  margin-bottom: 22px;
}

.contact .contact-panel-content h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.contact .contact-panel-content > p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, #fff, transparent 22%);
  margin-bottom: 26px;
}

.contact .contact-panel-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact .contact-panel-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, #fff, transparent 92%);
  border: 1px solid color-mix(in srgb, #fff, transparent 88%);
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact .contact-panel-list li:hover {
  background: color-mix(in srgb, #fff, transparent 85%);
  transform: translateX(4px);
}

.contact .contact-panel-list .cp-ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent-color), #ffffff 18%), var(--accent-color));
  box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.contact .contact-panel-list strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 15px;
  color: #fff;
}

.contact .contact-panel-list span,
.contact .contact-panel-list a {
  font-size: 13.5px;
  color: color-mix(in srgb, #fff, transparent 25%);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact .contact-panel-list a:hover {
  color: #fff;
}

.contact .contact-panel-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, #fff, transparent 85%);
  font-size: 13.5px;
  color: color-mix(in srgb, #fff, transparent 15%);
}

.contact .cp-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #36d399;
  flex-shrink: 0;
}

.contact .cp-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #36d399;
  animation: cpPulse 1.8s ease-out infinite;
}

@keyframes cpPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Form */
.contact .contact-form {
  height: 100%;
  background: var(--surface-color);
  padding: 42px;
  border-radius: 18px;
  border: 0;
  box-shadow: 0 30px 70px -40px rgba(39, 61, 78, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .contact-form-head {
  margin-bottom: 28px;
  text-align: center;
}

.contact .contact-form-head h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact .contact-form-head p {
  margin: 0 auto;
  max-width: 460px;
  font-size: 14.5px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .field {
  position: relative;
}

.contact .field > i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  color: var(--accent-color);
  pointer-events: none;
  z-index: 2;
}

.contact .field.field-area > i {
  top: 26px;
  transform: translateY(-50%);
}

/* High specificity to override the template's input padding */
.contact .php-email-form.contact-form .form-control {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 46px;
  border-radius: 11px;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 86%);
  background: color-mix(in srgb, var(--background-color), #ffffff 40%);
  font-size: 15px;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact .php-email-form.contact-form textarea.form-control {
  height: auto;
  min-height: 140px;
  padding: 15px 16px 15px 46px;
}

.contact .php-email-form.contact-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.contact .php-email-form.contact-form .form-control:focus {
  border-color: var(--accent-color);
  background: var(--surface-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact .contact-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  text-align: center;
}

.contact .contact-submit button[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  border: 0;
  color: #fff;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--accent-color), transparent 35%);
}

.contact .contact-submit button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 12%);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact .contact-privacy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.contact .contact-privacy i {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .contact .contact-panel {
    min-height: 360px;
  }
}