/* 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: "Lato",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff;
  --default-color: #3d3d3d;
  --heading-color: #292929;
  --accent-color: #379c0c;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #d3d3d3;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3d3d3d;
  --nav-dropdown-hover-color: #379c0c;
}

/* Color Presets */

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

.dark-background {
  --background-color: #01020e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #F0EBE1;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1933;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, #000000, transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# 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: #000000;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .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;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-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: #059669;
  }

  .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: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

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

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

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

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

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

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

/*--------------------------------------------------------------
# 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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

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

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

.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 100px;
}

.hero .hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero .hero-header h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero .hero-header h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-header h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: -1;
}

.hero .media-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.hero .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .media-block .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.hero .media-block .overlay-content .stats-item {
  display: flex;
  flex-direction: column;
}

.hero .media-block .overlay-content .stats-item .number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero .media-block .overlay-content .stats-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.hero .info-block {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .info-block .lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.hero .info-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.hero .info-block .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .info-block .feature-list li:last-child {
  border-bottom: none;
}

.hero .info-block .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.hero .info-block .action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .info-block .action-row .btn-get-started {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
}

.hero .info-block .action-row .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.hero .info-block .action-row .btn-contact i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-contact:hover {
  color: var(--accent-color);
}

.hero .info-block .action-row .btn-contact:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

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

  .hero .hero-header h1 {
    font-size: 40px;
  }

  .hero .media-block {
    min-height: 300px;
  }

  .hero .info-block {
    margin-top: 10px;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero .hero-header h1 {
    font-size: 32px;
  }

  .hero .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }

  .hero .media-block {
    min-height: 250px;
  }

  .hero .media-block .overlay-content {
    padding: 20px;
  }

  .hero .media-block .overlay-content .stats-item .number {
    font-size: 36px;
  }

  .hero .info-block {
    padding: 25px;
  }

  .hero .info-block .lead-text {
    font-size: 15px;
  }

  .hero .info-block .action-row {
    flex-direction: column;
    gap: 15px;
  }

  .hero .info-block .action-row .btn-get-started {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about .image-gallery {
  position: relative;
}

.about .image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about .image-gallery .gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.about .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.about .image-gallery .main-image {
  height: 400px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .about .image-gallery .main-image {
    height: 280px;
  }
}

.about .image-gallery .side-image {
  height: 400px;
  align-self: end;
  margin-top: 3rem;
}

@media (max-width: 576px) {
  .about .image-gallery .side-image {
    height: 220px;
    margin-top: 0;
  }
}

.about .image-gallery .experience-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.about .image-gallery .experience-badge .badge-inner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 1.5rem 2.5rem;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .badge-inner {
    padding: 1rem 1.75rem;
  }
}

.about .image-gallery .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .number {
    font-size: 2rem;
  }
}

.about .image-gallery .experience-badge .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-top: 2rem;
  }
}

.about .info-panel .panel-header {
  margin-bottom: 1.5rem;
}

.about .info-panel .panel-header .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .info-panel .panel-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .info-panel .panel-header h2 {
    font-size: 2rem;
  }
}

.about .info-panel .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about .info-panel .highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .about .info-panel .highlights-row {
    grid-template-columns: 1fr;
  }
}

.about .info-panel .highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .info-panel .highlight-box:hover {
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-3px);
}

.about .info-panel .highlight-box .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .info-panel .highlight-box .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about .info-panel .highlight-box .highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about .info-panel .highlight-box .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.about .info-panel .stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.about .info-panel .stats-row .stat-block {
  text-align: center;
  flex: 1;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row .stat-block {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

.about .info-panel .stats-row .stat-block h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .info-panel .stats-row .stat-block h3 {
    font-size: 1.75rem;
  }
}

.about .info-panel .stats-row .stat-block span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

.about .info-panel .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about .info-panel .cta-button i {
  transition: transform 0.3s ease;
}

.about .info-panel .cta-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
}

.services .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card:hover::after {
  transform: scaleX(1);
}

.services .service-card:hover .icon-circle {
  background: var(--accent-color);
  transform: rotate(10deg);
}

.services .service-card:hover .icon-circle i {
  color: var(--contrast-color);
}

.services .service-card:hover .card-link {
  color: var(--accent-color);
}

.services .service-card:hover .card-link i {
  transform: translateX(5px);
}

.services .service-card.highlighted {
  background: linear-gradient(160deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), var(--surface-color) 95%) 100%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services .service-card.highlighted::after {
  transform: scaleX(1);
}

.services .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 30px;
}

.services .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.services .icon-circle i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.services .service-num {
  font-size: 42px;
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 90%);
  line-height: 1;
}

.services .card-body {
  margin-bottom: 20px;
}

.services .card-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services .card-body h4 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .card-body h4 a:hover {
  color: var(--accent-color);
}

.services .card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services .feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 5px 12px;
  border-radius: 20px;
}

.services .feature-list li i {
  color: var(--accent-color);
  font-size: 12px;
}

.services .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .services-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.services .sidebar-service-item {
  display: flex;
  gap: 18px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.services .sidebar-service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

.services .sidebar-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .sidebar-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.services .sidebar-content {
  flex: 1;
}

.services .sidebar-content .sidebar-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .sidebar-content h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 10px;
}

.services .sidebar-content h5 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .sidebar-content h5 a:hover {
  color: var(--accent-color);
}

.services .sidebar-content p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

.services .sidebar-cta {
  flex: 1;
  min-height: 280px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #7c3aed 40%) 100%);
  padding: 4px;
}

.services .sidebar-cta .cta-inner {
  height: 100%;
  border-radius: 17px;
  background: linear-gradient(160deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #7c3aed 40%) 100%);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services .sidebar-cta .cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.services .sidebar-cta .cta-inner>i {
  font-size: 42px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.services .sidebar-cta .cta-inner h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.services .sidebar-cta .cta-inner p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.services .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px color-mix(in srgb, #000, transparent 75%);
}

.services .cta-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, #000, transparent 65%);
}

.services .cta-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services .services-sidebar {
    margin-top: 20px;
  }

  .services .sidebar-cta {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 24px;
  }

  .services .icon-circle {
    width: 56px;
    height: 56px;
  }

  .services .icon-circle i {
    font-size: 24px;
  }

  .services .service-num {
    font-size: 36px;
  }

  .services .card-body h4 {
    font-size: 18px;
  }

  .services .sidebar-cta .cta-inner {
    padding: 28px 24px;
  }

  .services .sidebar-cta .cta-inner h4 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .services .service-card {
    padding: 20px;
  }

  .services .card-header {
    margin-bottom: 18px;
  }

  .services .icon-circle {
    width: 50px;
    height: 50px;
  }

  .services .icon-circle i {
    font-size: 22px;
  }

  .services .service-num {
    font-size: 32px;
  }

  .services .feature-list li {
    font-size: 12px;
    padding: 4px 10px;
  }

  .services .sidebar-service-item {
    padding: 20px;
  }

  .services .sidebar-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .services .sidebar-icon i {
    font-size: 20px;
  }

  .services .sidebar-content h5 {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
}

.why-us .intro-content {
  padding-right: 40px;
}

.why-us .intro-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-us .intro-content .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-us .intro-content .stats-row {
  display: flex;
  gap: 40px;
}

.why-us .intro-content .stats-row .stat-item .stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.why-us .intro-content .stats-row .stat-item .stat-unit {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.why-us .intro-content .stats-row .stat-item .stat-desc {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 5px;
}

@media (max-width: 991px) {
  .why-us .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .intro-content .stats-row {
    justify-content: center;
  }
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-us .features-grid .grid-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.why-us .features-grid .grid-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .features-grid .grid-item .grid-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .features-grid .grid-item .grid-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.why-us .features-grid .grid-item .grid-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.why-us .features-grid .grid-item .grid-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .highlight-cards {
  margin-top: 60px;
}

.why-us .highlight-cards .highlight-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us .highlight-cards .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.why-us .highlight-cards .highlight-card:hover::before {
  opacity: 1;
}

.why-us .highlight-cards .highlight-card:hover .card-link i {
  transform: translateX(5px);
}

.why-us .highlight-cards .highlight-card.featured {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 35%));
}

.why-us .highlight-cards .highlight-card.featured::before {
  display: none;
}

.why-us .highlight-cards .highlight-card.featured .card-header i {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured .card-header .card-badge {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured h4 {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.why-us .highlight-cards .highlight-card.featured .card-link {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-header i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-color);
}

.why-us .highlight-cards .highlight-card .card-header .card-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 20px;
}

.why-us .highlight-cards .highlight-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.why-us .highlight-cards .highlight-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card .card-link i {
  transition: transform 0.3s ease;
}

.why-us .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.why-us .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.why-us .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.why-us .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.why-us .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.why-us .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .why-us .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .why-us .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .why-us .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .intro-content h3 {
    font-size: 26px;
  }

  .why-us .intro-content .stats-row {
    gap: 30px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-value {
    font-size: 36px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-unit {
    font-size: 24px;
  }

  .why-us .highlight-cards {
    margin-top: 40px;
  }

  .why-us .highlight-cards .highlight-card {
    padding: 28px 24px;
  }

  .why-us .highlight-cards .highlight-card h4 {
    font-size: 20px;
  }

  .why-us .cta-banner .cta-content h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 100px 0;
}

.portfolio .filter-header {
  margin-bottom: 50px;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease-out;
  position: relative;
  padding-bottom: 8px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--default-color);
  transition: width 0.3s ease-out;
}

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

.portfolio .portfolio-filters li:hover::after,
.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters {
    gap: 20px;
  }

  .portfolio .portfolio-filters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-card {
  position: relative;
}

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

.portfolio .portfolio-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--default-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.portfolio .overlay-actions {
  display: flex;
  gap: 15px;
}

.portfolio .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--contrast-color);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease-out;
  transform: translateY(20px);
  opacity: 0;
}

.portfolio .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
}

.portfolio .portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

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

.portfolio .portfolio-card:hover .action-btn {
  transform: translateY(0);
  opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn:nth-child(2) {
  transition-delay: 0.1s;
}

.portfolio .portfolio-content {
  padding: 25px 0;
}

.portfolio .portfolio-category {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 8px;
}

.portfolio .portfolio-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.portfolio .portfolio-cta {
  text-align: center;
  margin-top: 60px;
}

.portfolio .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
  position: relative;
  padding-bottom: 4px;
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.portfolio .view-all-link i {
  transition: transform 0.3s ease-out;
}

.portfolio .view-all-link:hover {
  color: var(--default-color);
  background-size: 100% 1px;
}

.portfolio .view-all-link:hover i {
  transform: translateX(5px);
}

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

  .portfolio .filter-header {
    margin-bottom: 40px;
  }

  .portfolio .portfolio-content {
    padding: 20px 0;
  }

  .portfolio .portfolio-title {
    font-size: 20px;
  }

  .portfolio .portfolio-cta {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
  padding: 20px 0 40px;
}

.testimonials .testimonial-item {
  background: var(--surface-color);
  padding: 40px 35px;
  border-radius: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border-left: 5px solid var(--accent-color);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px);
}

.testimonials .testimonial-quote {
  position: absolute;
  top: 25px;
  right: 30px;
}

.testimonials .testimonial-quote i {
  font-size: 60px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
}

.testimonials .testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonials .stars-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}

.testimonials .stars-rating i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 2px dashed color-mix(in srgb, var(--default-color), transparent 88%);
  position: relative;
}

.testimonials .author-image {
  flex-shrink: 0;
}

.testimonials .author-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  padding: 3px;
  background: var(--surface-color);
}

.testimonials .author-details {
  flex: 1;
}

.testimonials .author-details h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .author-details>span {
  display: block;
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonials .company-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .company-info i {
  font-size: 12px;
}

.testimonials .verified-icon {
  position: absolute;
  top: 25px;
  right: 0;
}

.testimonials .verified-icon i {
  font-size: 24px;
  color: #22c55e;
}

.testimonials .swiper-navigation-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 18px;
  color: var(--contrast-color);
  font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .testimonials .testimonial-item {
    padding: 35px 30px;
  }

  .testimonials .testimonial-quote i {
    font-size: 50px;
  }

  .testimonials .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item {
    padding: 30px 25px;
  }

  .testimonials .testimonial-quote {
    top: 20px;
    right: 20px;
  }

  .testimonials .testimonial-quote i {
    font-size: 40px;
  }

  .testimonials .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonials .author-image img {
    width: 60px;
    height: 60px;
  }

  .testimonials .author-details h4 {
    font-size: 16px;
  }

  .testimonials .author-details>span {
    font-size: 13px;
  }

  .testimonials .verified-icon i {
    font-size: 20px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  height: 100%;
}

.team .team-card .card-inner {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.team .team-card .card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-card .card-inner:hover .avatar-container .avatar-ring {
  transform: scale(1.1);
  opacity: 1;
}

.team .team-card .card-inner:hover .avatar-container img {
  transform: scale(1.05);
}

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

.team .team-card .avatar-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
}

.team .team-card .avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.team .team-card .avatar-container .avatar-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.team .team-card .member-info {
  margin-bottom: 15px;
}

.team .team-card .member-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
}

.team .team-card .member-info .position {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
}

.team .team-card .member-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team .team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team .team-card .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team .team-card .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding: 0;
}

@media (max-width: 992px) {
  .team .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .team .stats-row {
    grid-template-columns: 1fr;
  }
}

.team .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.team .stats-row .stat-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.team .stats-row .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .stats-row .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.team .stats-row .stat-item .stat-data {
  display: flex;
  flex-direction: column;
}

.team .stats-row .stat-item .stat-data .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.team .stats-row .stat-item .stat-data .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
}

.team .join-team-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 25%) 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .team .join-team-banner {
    padding: 40px 30px;
  }
}

.team .join-team-banner .banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--contrast-color), transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}

.team .join-team-banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

.team .join-team-banner .banner-text {
  flex: 1;
}

.team .join-team-banner .banner-text .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team .join-team-banner .banner-text .badge-label i {
  font-size: 1rem;
}

.team .join-team-banner .banner-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0 0 15px 0;
}

@media (max-width: 768px) {
  .team .join-team-banner .banner-text h3 {
    font-size: 1.75rem;
  }
}

.team .join-team-banner .banner-text p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-text p {
    max-width: none;
  }
}

.team .join-team-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .team .join-team-banner .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.team .join-team-banner .banner-actions .btn-primary-action,
.team .join-team-banner .banner-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.team .join-team-banner .banner-actions .btn-primary-action i,
.team .join-team-banner .banner-actions .btn-secondary-action i {
  font-size: 1.1rem;
}

.team .join-team-banner .banner-actions .btn-primary-action {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.team .join-team-banner .banner-actions .btn-primary-action:hover {
  background: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.team .join-team-banner .banner-actions .btn-secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  color: var(--contrast-color);
}

.team .join-team-banner .banner-actions .btn-secondary-action:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.pricing .pricing-card.highlighted {
  border: 2px solid var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.pricing .pricing-card.highlighted .card-header {
  background: var(--accent-color);
}

.pricing .pricing-card.highlighted .card-header .plan-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .card-header .plan-title,
.pricing .pricing-card.highlighted .card-header .plan-subtitle {
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black);
}

.pricing .pricing-card.highlighted:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 56px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.pricing .card-header {
  padding: 32px 28px 24px;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 6%, transparent);
}

.pricing .plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .plan-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.pricing .plan-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin: 0;
}

.pricing .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing .price-wrapper .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing .price-wrapper .amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .price-wrapper .amount.annual-price {
  display: none;
}

.pricing .price-wrapper .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-weight: 500;
}

.pricing .price-wrapper.custom-pricing {
  padding: 12px 0;
}

.pricing .price-wrapper.custom-pricing .custom-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -1px;
}

.pricing .billing-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-bottom: 24px;
}

.pricing .billing-info.annual-billing {
  display: none;
}

.pricing .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricing .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

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

.pricing .trial-note {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  text-align: center;
  margin-top: 12px;
}

.pricing .security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
  .pricing .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing .security-badges {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}

.pricing .badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing .badge-item:hover {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.pricing .badge-item i {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing .badge-item .badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing .badge-item .badge-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.pricing .badge-item .badge-content span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.pricing .help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pricing .help-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.pricing .help-links a i {
  font-size: 18px;
}

.pricing .help-links a:hover {
  color: color-mix(in srgb, var(--accent-color) 75%, black);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .pricing .help-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing .card-header {
    padding: 24px 20px 20px;
  }

  .pricing .card-body {
    padding: 24px 20px;
  }

  .pricing .price-wrapper .amount {
    font-size: 44px;
  }

  .pricing .price-wrapper.custom-pricing .custom-text {
    font-size: 30px;
  }

  .pricing .plan-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .pricing .security-badges {
    margin-top: 48px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .faq .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq .faq-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .faq .faq-categories {
    position: static;
  }
}

.faq .faq-categories .nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.faq .faq-categories .nav-tabs .nav-item {
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs .nav-item {
    flex: 1;
    min-width: 140px;
    width: auto;
  }
}

.faq .category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface-color);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  text-align: left;
}

@media (max-width: 992px) {
  .faq .category-card {
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  .faq .category-card {
    padding: 14px 16px;
    gap: 12px;
  }
}

.faq .category-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .faq .category-card:hover {
    transform: translateY(-4px);
  }
}

.faq .category-card.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.faq .category-card.active .category-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.faq .category-card.active .category-info h5 {
  color: var(--contrast-color);
}

.faq .category-card.active .category-info span {
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
}

.faq .category-card .category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 22px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.faq .category-card .category-info h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info h5 {
    font-size: 14px;
  }
}

.faq .category-card .category-info span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info span {
    font-size: 12px;
  }
}

.faq .help-box {
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 10%, transparent) 0%, color-mix(in srgb, var(--accent-color) 5%, transparent) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
  .faq .help-box {
    flex-basis: 100%;
    margin-top: 12px;
  }
}

.faq .help-box .help-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 24px;
}

.faq .help-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.faq .help-box p {
  margin: 0 0 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
}

.faq .help-box .help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq .help-box .help-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq .help-box .help-link:hover {
  gap: 12px;
}

.faq .help-box .help-link:hover i {
  transform: translateX(4px);
}

.faq .faq-content-area .faq-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.faq .faq-content-area .faq-header-info .questions-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 20px;
}

.faq .faq-content-area .faq-header-info .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--surface-color);
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  transition: all 0.3s ease;
}

.faq .faq-content-area .faq-header-info .search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.faq .faq-content-area .faq-header-info .search-box i {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-size: 18px;
}

.faq .faq-content-area .faq-header-info .search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--default-color);
  width: 200px;
}

.faq .faq-content-area .faq-header-info .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-content-area .faq-header-info .search-box input {
    width: 140px;
  }
}

.faq .tab-content .tab-pane.show {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq .faq-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.faq .faq-item:hover {
  border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.faq .faq-item.faq-active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.faq .faq-item.faq-active .faq-question {
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
}

.faq .faq-item.faq-active .faq-question .question-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-question .toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 76px;
  opacity: 1;
}

@media (max-width: 576px) {
  .faq .faq-item.faq-active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

.faq .faq-item .faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question {
    padding: 18px 20px;
    gap: 12px;
    font-size: 15px;
  }
}

.faq .faq-item .faq-question .question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .question-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.faq .faq-item .faq-question .toggle-icon {
  flex-shrink: 0;
  margin-left: auto;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-size: 20px;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .toggle-icon {
    font-size: 16px;
  }
}

.faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px 0 76px;
  opacity: 0;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer {
    padding: 0 20px 0 20px;
  }
}

.faq .faq-item .faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .main-contact-wrapper {
  background: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .info-box {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  height: 100%;
  transition: all 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .info-box:hover .icon-wrap {
  background: var(--accent-color);
  transform: scale(1.1);
}

.contact .info-box:hover .icon-wrap i {
  color: var(--contrast-color);
}

.contact .info-box .icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact .info-box .icon-wrap i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .info-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-box p {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
}

.contact .info-box .availability {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
}

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

.contact .form-section .form-intro {
  margin-bottom: 30px;
}

.contact .form-section .form-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .form-section .form-intro p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact .form-section .php-email-form .input-group-custom {
  position: relative;
}

.contact .form-section .php-email-form .input-group-custom i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  z-index: 2;
  transition: color 0.3s ease;
}

.contact .form-section .php-email-form .input-group-custom.textarea-group i {
  top: 20px;
  transform: none;
}

.contact .form-section .php-email-form .input-group-custom:focus-within i {
  color: var(--accent-color);
}

.contact .form-section .php-email-form .form-control {
  padding: 15px 18px 15px 50px;
  border-radius: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact .form-section .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color), transparent 92%);
  outline: none;
}

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

.contact .form-section .php-email-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.contact .form-section .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}

.contact .form-section .form-footer .form-messages {
  flex: 1;
}

.contact .form-section .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact .form-section .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .form-section .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-section .btn-submit:hover i {
  transform: translateX(3px) rotate(-15deg);
}

.contact .sidebar-panel {
  background: linear-gradient(160deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7c3aed 40%));
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact .sidebar-panel:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.contact .sidebar-panel .panel-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.contact .sidebar-panel .panel-header .header-badge {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact .sidebar-panel .panel-header .header-badge i {
  font-size: 28px;
  color: var(--contrast-color);
}

.contact .sidebar-panel .panel-header h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.contact .sidebar-panel .metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
}

.contact .sidebar-panel .metrics-grid .metric-item {
  background: color-mix(in srgb, var(--contrast-color), transparent 88%);
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact .sidebar-panel .metrics-grid .metric-item:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  transform: scale(1.03);
}

.contact .sidebar-panel .metrics-grid .metric-item .metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 4px;
}

.contact .sidebar-panel .metrics-grid .metric-item .metric-desc {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 500;
}

.contact .sidebar-panel .testimonial-mini {
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 25px;
  position: relative;
}

.contact .sidebar-panel .testimonial-mini .quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .sidebar-panel .testimonial-mini .quote-icon i {
  font-size: 16px;
  color: var(--accent-color);
}

.contact .sidebar-panel .testimonial-mini p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 18px;
  margin-top: 10px;
}

.contact .sidebar-panel .testimonial-mini .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact .sidebar-panel .testimonial-mini .client-info .client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details {
  display: flex;
  flex-direction: column;
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details .client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--contrast-color);
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details .client-role {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.contact .sidebar-panel .social-bar {
  text-align: center;
  position: relative;
}

.contact .sidebar-panel .social-bar .social-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 14px;
}

.contact .sidebar-panel .social-bar .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact .sidebar-panel .social-bar .social-icons a {
  width: 38px;
  height: 38px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.contact .sidebar-panel .social-bar .social-icons a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-4px);
}

.contact .sidebar-panel .social-bar .social-icons a i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact .main-contact-wrapper {
    padding: 30px;
  }

  .contact .sidebar-panel {
    margin-top: 20px;
  }

  .contact .form-section .form-intro h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .contact .main-contact-wrapper {
    padding: 25px 20px;
  }

  .contact .form-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact .form-section .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact .form-section .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .contact .sidebar-panel {
    padding: 30px 25px;
  }

  .contact .sidebar-panel .metrics-grid {
    gap: 12px;
  }

  .contact .sidebar-panel .metrics-grid .metric-item {
    padding: 16px 12px;
  }

  .contact .sidebar-panel .metrics-grid .metric-item .metric-value {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .project-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3rem;
}

.portfolio-details .project-header .header-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-details .project-header .header-meta .category-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-details .project-header .header-meta .project-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-details .project-header .header-meta .project-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.portfolio-details .project-header .header-meta .project-info span i {
  color: var(--accent-color);
  font-size: 16px;
}

.portfolio-details .project-header .main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.portfolio-details .project-header .subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.portfolio-details .project-header .project-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.portfolio-details .project-header .project-link a i {
  font-size: 18px;
}

.portfolio-details .project-header .project-link a:hover {
  gap: 12px;
}

.portfolio-details .gallery-showcase {
  margin-bottom: 3.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.portfolio-details .gallery-showcase .showcase-slider {
  position: relative;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-pagination {
  bottom: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:after,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-color);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:hover,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:hover:after,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
  left: 25px;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next {
  right: 25px;
}

.portfolio-details .content-section {
  margin-bottom: 3rem;
}

.portfolio-details .content-section .info-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .content-section .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-details .content-section .info-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.portfolio-details .content-section .info-card .card-icon i {
  font-size: 26px;
  color: var(--accent-color);
}

.portfolio-details .content-section .info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--heading-color);
}

.portfolio-details .content-section .info-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  font-size: 15px;
}

.portfolio-details .details-row .features-block {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .details-row .features-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.portfolio-details .details-row .features-block h3 i {
  color: var(--accent-color);
}

.portfolio-details .details-row .features-block .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.portfolio-details .details-row .features-block .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.portfolio-details .details-row .features-block .features-grid .feature-item i {
  font-size: 20px;
  color: var(--accent-color);
}

.portfolio-details .details-row .features-block .features-grid .feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.portfolio-details .details-row .features-block .features-grid .feature-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateX(5px);
}

.portfolio-details .details-row .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-details .details-row .gallery-grid .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-details .details-row .gallery-grid .gallery-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-details .details-row .gallery-grid .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-details .details-row .gallery-grid .gallery-item .overlay i {
  font-size: 28px;
  color: var(--contrast-color);
}

.portfolio-details .details-row .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.portfolio-details .details-row .gallery-grid .gallery-item:hover .overlay {
  opacity: 1;
}

.portfolio-details .details-row .sidebar-content {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, var(--surface-color) 100%);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.portfolio-details .details-row .sidebar-content .tech-section {
  margin-bottom: 2rem;
}

.portfolio-details .details-row .sidebar-content .tech-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.portfolio-details .details-row .sidebar-content .tech-section h4 i {
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags span {
  padding: 8px 16px;
  background: var(--contrast-color);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags span:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .details-row .sidebar-content .stats-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.portfolio-details .details-row .sidebar-content .stats-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.portfolio-details .details-row .sidebar-content .stats-section h4 i {
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--contrast-color);
  border-radius: 10px;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .details-row .sidebar-content .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-primary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--default-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action:hover i {
  transform: translateX(5px);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action i {
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .portfolio-details .project-header .main-title {
    font-size: 2.2rem;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next,
  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:after,
  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:after {
    font-size: 14px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .details-row .features-block .features-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-details .details-row .sidebar-content {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header {
    margin-bottom: 2rem;
  }

  .portfolio-details .project-header .main-title {
    font-size: 1.8rem;
  }

  .portfolio-details .project-header .header-meta .project-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .gallery-showcase {
    margin-bottom: 2.5rem;
    border-radius: 12px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-slide img {
    aspect-ratio: 16/10;
  }

  .portfolio-details .details-row .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item img {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .portfolio-details .details-row .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item:last-child {
    grid-column: span 2;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item:last-child img {
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.service-details .service-hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
}

.service-details .service-hero .hero-content .service-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-details .service-hero .hero-content h2 {
  color: var(--contrast-color);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .service-hero .hero-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

.service-details .facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  margin-top: -3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.service-details .facts-strip .fact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .facts-strip .fact-box i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details .facts-strip .fact-box .fact-info {
  display: flex;
  flex-direction: column;
}

.service-details .facts-strip .fact-box .fact-info .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .facts-strip .fact-box .fact-info strong {
  color: var(--heading-color);
  font-size: 1rem;
}

.service-details .content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-details .main-column .description-block {
  margin-bottom: 2.5rem;
}

.service-details .main-column .description-block h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.service-details .main-column .description-block p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1rem;
}

.service-details .main-column .description-block p:last-child {
  margin-bottom: 0;
}

.service-details .main-column .features-grid h4 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-details .main-column .features-grid .features-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-details .main-column .features-grid .feature-card {
  background: var(--surface-color);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .main-column .features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details .main-column .features-grid .feature-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-details .main-column .features-grid .feature-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .main-column .features-grid .feature-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details .main-column .features-grid .feature-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

.service-details .side-column .process-timeline {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.service-details .side-column .process-timeline h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.service-details .side-column .process-timeline .timeline-items {
  position: relative;
}

.service-details .side-column .process-timeline .timeline-items::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .side-column .process-timeline .timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.service-details .side-column .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker {
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker span {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 0.85rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content {
  padding-top: 0.25rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content h6 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin: 0;
}

.service-details .side-column .client-feedback {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.service-details .side-column .client-feedback .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.2;
}

.service-details .side-column .client-feedback .quote-icon i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.service-details .side-column .client-feedback blockquote {
  color: var(--contrast-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  position: relative;
  z-index: 1;
}

.service-details .side-column .client-feedback .client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.service-details .side-column .client-feedback .client-profile .client-details strong {
  display: block;
  color: var(--contrast-color);
  font-size: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
}

.service-details .inquiry-section {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .inquiry-section .inquiry-content h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .inquiry-section .inquiry-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
  grid-column: span 3;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--background-color);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-actions {
  margin-top: 1.25rem;
  text-align: right;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .service-details .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .side-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-details .side-column .process-timeline,
  .service-details .side-column .client-feedback {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .service-details .facts-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .service-details .inquiry-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 2;
  }

  .service-details .side-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 300px;
  }

  .service-details .service-hero .hero-content {
    padding: 2rem;
  }

  .service-details .service-hero .hero-content h2 {
    font-size: 2rem;
  }

  .service-details .service-hero .hero-content p {
    font-size: 1rem;
  }

  .service-details .facts-strip {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .service-details .facts-strip .fact-box {
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .service-details .facts-strip .fact-box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .service-details .main-column .features-grid .features-wrapper {
    grid-template-columns: 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 1;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-actions {
    text-align: center;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .btn-request {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 100%) 100%);
  border-radius: 20px;
  text-align: center;
}

.terms-of-service .tos-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-of-service .tos-header .header-content .badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: var(--surface-color);
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-of-service .tos-header .header-content .badge-wrapper i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.terms-of-service .tos-header .header-content .badge-wrapper .last-updated {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  font-weight: 500;
}

.terms-of-service .tos-header .header-content h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .terms-of-service .tos-header .header-content h2 {
    font-size: 2.2rem;
  }
}

.terms-of-service .tos-header .header-content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.terms-of-service .tos-sidebar {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .terms-of-service .tos-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

.terms-of-service .tos-sidebar h5 {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-service .tos-sidebar .terms-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .number {
  font-size: 0.85rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  min-width: 25px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .text {
  font-size: 0.95rem;
  font-weight: 500;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover .number,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active .number {
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section {
  position: relative;
  margin-bottom: 45px;
  padding: 35px;
  background-color: var(--surface-color);
  border-radius: 16px;
  scroll-margin-top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.terms-of-service .tos-content .content-section:last-of-type {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .section-number {
  position: absolute;
  top: -15px;
  left: 35px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  margin-top: 15px;
  color: var(--heading-color);
  font-weight: 700;
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .highlight-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-content .content-section .highlight-card .card-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.terms-of-service .tos-content .content-section .highlight-card .card-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.terms-of-service .tos-content .content-section .list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .terms-of-service .tos-content .content-section .list-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .list-grid .list-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .list-grid .list-card i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .list-grid .list-card span {
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.terms-of-service .tos-content .content-section .warning-card {
  padding: 25px;
  background-color: color-mix(in srgb, #ffc107, transparent 94%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.terms-of-service .tos-content .content-section .warning-card .warning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header i {
  font-size: 1.5rem;
  color: #ffc107;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.terms-of-service .tos-content .content-section .warning-card p {
  margin: 0;
  font-size: 0.95rem;
  padding-left: 38px;
}

.terms-of-service .tos-content .content-section .prohibited-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .terms-of-service .tos-content .content-section .prohibited-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card {
  padding: 18px;
  background-color: color-mix(in srgb, #dc3545, transparent 96%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #dc3545, transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card p {
  margin: 0;
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 28px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-card h6 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li span {
  flex: 1;
  line-height: 1.6;
}

.terms-of-service .tos-content .content-section .notice-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-card i {
  font-size: 1.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-of-service .tos-content .content-section .notice-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.terms-of-service .tos-content .tos-contact {
  margin-top: 40px;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 15%) 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .terms-of-service .tos-content .tos-contact .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info {
  flex: 1;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--contrast-color);
  font-weight: 700;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn i {
  font-size: 1.1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn span {
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

  .terms-of-service .tos-sidebar,
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
    box-shadow: none;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.75;
}

.privacy .policy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-sidebar .effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.privacy .policy-sidebar .effective-badge i {
  font-size: 1rem;
}

.privacy .policy-sidebar h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .sidebar-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.privacy .policy-sidebar .policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.privacy .policy-sidebar .policy-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link:hover,
.privacy .policy-sidebar .policy-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.privacy .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.privacy .policy-sidebar .policy-nav .nav-link.active .nav-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.privacy .policy-sidebar .contact-card {
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
}

.privacy .policy-sidebar .contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .policy-sidebar .contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .contact-card .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.privacy .policy-sidebar .contact-card .contact-email i {
  font-size: 1.1rem;
}

.privacy .policy-sidebar .contact-card .contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .policy-sidebar .contact-card .contact-address i {
  font-size: 1rem;
  margin-top: 2px;
}

.privacy .policy-content {
  padding-left: 20px;
}

.privacy .policy-content .policy-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-content .policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy .policy-content .policy-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.privacy .policy-content .policy-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.privacy .policy-content .policy-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.privacy .policy-content .policy-section .section-body p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body p:last-child {
  margin-bottom: 0;
}

.privacy .policy-content .policy-section .section-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}

.privacy .policy-content .policy-section .section-body h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.privacy .policy-content .policy-section .section-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.privacy .policy-content .policy-section .section-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .policy-content .policy-section .section-body ul li:last-child {
  margin-bottom: 0;
}

.privacy .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.privacy .info-card:last-child {
  margin-bottom: 0;
}

.privacy .info-card h3 {
  margin-top: 0 !important;
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.privacy .sharing-item {
  margin-bottom: 25px;
}

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

.privacy .sharing-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.privacy .security-features .feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.privacy .security-features .feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}

.privacy .security-features .feature .feature-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .security-features .feature .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .security-features .feature .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.privacy .rights-list .right-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.privacy .rights-list .right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-list .right-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.privacy .rights-list .right-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .rights-list .right-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  margin-top: 25px;
}

.privacy .update-notice i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy .update-notice span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .privacy .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .privacy .policy-sidebar .policy-nav {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: 1fr;
  }

  .privacy .rights-list {
    grid-template-columns: 1fr;
  }

  .privacy .policy-content .policy-section .section-header h2 {
    font-size: 1.4rem;
  }

  .privacy .policy-content .policy-section .section-header .section-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .privacy .security-features .feature {
    flex-direction: column;
    text-align: center;
  }

  .privacy .security-features .feature .feature-icon {
    margin: 0 auto;
  }
}

@media print {
  .privacy .policy-sidebar {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }

  .privacy .policy-content .policy-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.error-404::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 70%);
  pointer-events: none;
}

.error-404 .error-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 4px 4px 0 color-mix(in srgb, var(--accent-color), transparent 80%);
}

.error-404 .error-visual .glitch-wrapper .digit-middle {
  font-size: clamp(80px, 14vw, 140px);
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  animation: float 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit-middle i {
  display: block;
}

.error-404 .error-visual .error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.error-404 .error-visual .error-decoration .circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-visual .error-decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.error-404 .error-visual .error-decoration .circle-2 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 15s linear infinite reverse;
}

.error-404 .error-visual .error-decoration .circle-3 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}

.error-404 .error-content .error-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.error-404 .error-content .error-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.error-404 .error-content .error-description {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
  max-width: 480px;
}

.error-404 .error-content .search-box {
  display: flex;
  max-width: 400px;
  margin-bottom: 32px;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-box input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background-color: transparent;
  color: var(--default-color);
  font-size: 15px;
  outline: none;
}

.error-404 .error-content .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .error-content .search-box button {
  padding: 14px 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-box button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.error-404 .error-content .search-box button i {
  font-size: 18px;
}

.error-404 .error-content .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.error-404 .error-content .error-actions .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateX(-4px);
}

.error-404 .error-content .error-actions .btn-home i {
  font-size: 18px;
}

.error-404 .error-content .error-actions .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-content .error-actions .btn-contact:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.error-404 .error-content .error-actions .btn-contact i {
  font-size: 18px;
}

.error-404 .quick-links {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.error-404 .quick-links h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 28px;
  text-align: center;
}

.error-404 .quick-links .links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .error-404 .quick-links .links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .quick-links .links-wrapper {
    grid-template-columns: 1fr;
  }
}

.error-404 .quick-links .quick-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404 .quick-links .quick-link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.error-404 .quick-links .quick-link-item:hover .link-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 .quick-links .quick-link-item .link-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 22px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.error-404 .quick-links .quick-link-item .link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.error-404 .quick-links .quick-link-item .link-text .link-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.error-404 .quick-links .quick-link-item .link-text .link-subtitle {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

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

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-visual {
    margin-bottom: 40px;
  }

  .error-404 .error-visual .error-decoration .circle-1 {
    width: 240px;
    height: 240px;
  }

  .error-404 .error-visual .error-decoration .circle-2 {
    width: 180px;
    height: 180px;
  }

  .error-404 .error-visual .error-decoration .circle-3 {
    width: 120px;
    height: 120px;
  }

  .error-404 .error-content {
    text-align: center;
  }

  .error-404 .error-content .error-description {
    margin-left: auto;
    margin-right: auto;
  }

  .error-404 .error-content .search-box {
    margin-left: auto;
    margin-right: auto;
  }

  .error-404 .error-content .error-actions {
    justify-content: center;
  }

  .error-404 .quick-links {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .search-box {
    max-width: 100%;
  }

  .error-404 .error-content .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .error-404 .error-content .error-actions .btn-home,
  .error-404 .error-content .error-actions .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/* Base: sube el rem raíz de 16px a 18px */
    html { font-size: 18px; }

    /* Textos de cuerpo Crimson Pro — aumentar tamaño y espaciado */
    .cmh-desc,
    .cmn-body, .cmn-origin, .cmn-val-text,
    .cms-card-desc, .cms-pill, .cms-strip-label,
    .cmw-subtitle, .cmw-val-text,
    .cmg-cat,
    .cmp-card-desc, .cmp-note, .cmp-badge-item span,
    .cmf-subtitle, .cmf-cat-btn,
    section#faq.cmf-root .faq-answer p,
    section#faq.cmf-root .faq-question,
    .cmc-subtitle, .cmc-info-value, .cmc-info-note,
    .cmc-quote-text,
    .cmft-brand-desc, .cmft-nav-list a, .cmft-contact-text,
    .cmft-copy, .cmft-bottom-links a, .cmft-credits {
      font-size: 1.08rem !important;
      line-height: 1.88 !important;
    }

    /* Labels, eyebrows y etiquetas secundarias — mínimo legible */
    .cmh-eyebrow,
    .cmn-marker-label, .cmn-val-label,
    .cms-num, .cms-card-link,
    .cmw-eyebrow-label, .cmw-stat-label, .cmw-val-num,
    .cmp-eyebrow-label, .cmp-badge-item strong,
    .cmf-eyebrow-label, .cmf-cat-count,
    .cmc-eyebrow-label, .cmc-info-label, .cmc-quote-name, .cmc-quote-role,
    .cmft-nav-title, .cmft-contact-text strong, .cmft-social-label {
      font-size: 0.82rem !important;
      letter-spacing: 0.12em !important;
    }

    /* Subtítulos de sección y textos de valor */
    .cmn-subtitle, .cmw-subtitle, .cmc-subtitle {
      font-size: 1.1rem !important;
      line-height: 1.9 !important;
    }

    /* Preguntas del acordeón FAQ — más grandes para leer fácil */
    section#faq.cmf-root .faq-question {
      font-size: 1.1rem !important;
      line-height: 1.5 !important;
    }

    /* Info values en Contacto */
    .cmc-info-value {
      font-size: 1.12rem !important;
      font-weight: 500 !important;
    }

    /* Botones y CTAs — texto más grande */
    .cmh-btn, .cmh-fb-link,
    .cmn-cta,
    .cms-card-link, .cms-strip-cta,
    .cmw-cta-btn,
    .cmp-btn,
    .cmf-cta-link,
    .cmc-cta,
    .cmft-fb-btn {
      font-size: 0.95rem !important;
      letter-spacing: 0.1em !important;
    }

    /* Stat values hero — ya son grandes, solo asegurar legibilidad */
    .cmh-stat-label,
    .cmw-stat-label {
      font-size: 0.78rem !important;
      letter-spacing: 0.14em !important;
    }

    /* Reset outer section */
    section#hero.cmh-root {
      padding: 0 !important;
      margin: 0 !important;
      background: none !important;
      min-height: 0 !important;
      overflow: visible !important;
    }

    /* CSS Variables */
    .cmh-wrap {
      --cmh-g:     #182F26;
      --cmh-gd:    #0D1A13;
      --cmh-cream: #F0E5D1;
      --cmh-rust:  #B84A2A;
      --cmh-gold:  #C49A35;
      --cmh-muted: rgba(240, 229, 209, 0.52);
    }

    /* ── Wrapper grid ── */
    .cmh-wrap {
      display: grid;
      grid-template-columns: 34fr 66fr;
      min-height: 100vh;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    /* ── LEFT PANEL ── */
    .cmh-left {
      position: relative;
      background:
        radial-gradient(ellipse 70% 55% at 22% 72%, #1d3b2a 0%, #182F26 52%, #0e2018 100%);
      display: flex;
      align-items: center;
      clip-path: none;
      z-index: 2;
      padding: 3rem 4rem 3rem 4.5rem;
    }

    /* Decorative rings */
    .cmh-deco {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .cmh-deco-ring {
      position: absolute;
      top: -180px;
      left: -130px;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      border: 1px solid rgba(196, 154, 53, 0.1);
    }
    .cmh-deco-ring::before {
      content: '';
      position: absolute;
      inset: 50px;
      border-radius: 50%;
      border: 1px solid rgba(196, 154, 53, 0.07);
    }
    .cmh-deco-dots {
      position: absolute;
      bottom: 60px;
      left: 40px;
      width: 88px;
      height: 88px;
      background-image: radial-gradient(circle, rgba(196, 154, 53, 0.28) 1px, transparent 1px);
      background-size: 14px 14px;
    }
    /* Second ring — lower / center */
    .cmh-deco-ring-2 {
      position: absolute;
      bottom: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 420px;
      height: 420px;
      border-radius: 50%;
      border: 1px solid rgba(196, 154, 53, 0.06);
    }
    .cmh-deco-ring-2::before {
      content: '';
      position: absolute;
      inset: 44px;
      border-radius: 50%;
      border: 1px solid rgba(196, 154, 53, 0.04);
    }
    /* Horizontal editorial rule lines */
    .cmh-deco-lines {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 160px;
      background-image: repeating-linear-gradient(
        transparent,
        transparent 22px,
        rgba(240, 229, 209, 0.032) 22px,
        rgba(240, 229, 209, 0.032) 23px
      );
    }
    /* Corner brackets */
    .cmh-deco-corner-tr {
      position: absolute;
      top: 52px;
      right: 116px;
      width: 34px;
      height: 34px;
      border-top: 1px solid rgba(196, 154, 53, 0.28);
      border-right: 1px solid rgba(196, 154, 53, 0.28);
    }
    .cmh-deco-corner-bl {
      position: absolute;
      bottom: 52px;
      left: 44px;
      width: 34px;
      height: 34px;
      border-bottom: 1px solid rgba(196, 154, 53, 0.28);
      border-left: 1px solid rgba(196, 154, 53, 0.28);
    }
    /* Background monogram watermark */
    .cmh-deco-mono {
      position: absolute;
      right: -0.04em;
      bottom: -0.14em;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 30rem;
      font-weight: 900;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(240, 229, 209, 0.038);
      line-height: 0.8;
      user-select: none;
      pointer-events: none;
    }
    /* Thin vertical accent line */
    .cmh-deco-slash {
      position: absolute;
      top: 0;
      right: 140px;
      width: 1px;
      height: 100%;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(196, 154, 53, 0.06) 30%,
        rgba(196, 154, 53, 0.1) 55%,
        rgba(196, 154, 53, 0.04) 80%,
        transparent 100%
      );
      transform: rotate(-4deg);
      transform-origin: top center;
    }

    /* ── CONTENT ── */
    .cmh-content {
      position: relative;
      z-index: 1;
      max-width: 560px;
      width: 100%;
    }

    /* Eyebrow */
    .cmh-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      font-style: italic;
      color: var(--cmh-gold);
      letter-spacing: 0.07em;
      margin: 0 0 1.5rem;
      opacity: 0;
      animation: cmhUp 0.7s ease forwards 0.25s;
    }
    .cmh-live-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background-color: var(--cmh-rust);
      border-radius: 50%;
      flex-shrink: 0;
      animation: cmhPulse 2.4s ease-in-out infinite;
    }

    /* Main heading */
    .cmh-heading {
      font-family: 'Fraunces', Georgia, serif;
      display: flex;
      flex-direction: column;
      line-height: 0.86;
      margin: 0 0 1.5rem -5px;
      padding: 0;
      letter-spacing: -0.025em;
    }
    .cmh-h1, .cmh-h2 { display: block; opacity: 0; }
    .cmh-h1 {
      font-size: clamp(4.5rem, 7vw, 8.5rem);
      font-weight: 900;
      color: var(--cmh-cream);
      animation: cmhUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
    }
    .cmh-h2 {
      font-size: clamp(4.5rem, 7vw, 8.5rem);
      font-weight: 900;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 2px var(--cmh-rust);
      margin-left: 0.25em;
      animation: cmhUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.52s;
    }

    /* Service tags */
    .cmh-tags {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 2rem;
      opacity: 0;
      animation: cmhUp 0.7s ease forwards 0.68s;
    }
    .cmh-tag-pill {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cmh-muted);
    }
    .cmh-tag-sep {
      font-size: 0.55rem;
      color: var(--cmh-gold);
      opacity: 0.65;
    }

    /* Description */
    .cmh-desc {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1.08rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.78;
      color: var(--cmh-muted);
      border-left: 2px solid var(--cmh-rust);
      padding-left: 1rem;
      margin-bottom: 2.25rem;
      max-width: 390px;
      opacity: 0;
      animation: cmhUp 0.7s ease forwards 0.82s;
    }

    /* Actions */
    .cmh-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 3rem;
      opacity: 0;
      animation: cmhUp 0.7s ease forwards 0.96s;
    }

    /* CTA button */
    .cmh-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      position: relative;
      overflow: hidden;
      background-color: var(--cmh-rust);
      color: var(--cmh-cream);
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      padding: 0.875rem 1.875rem;
      transition: color 0.38s ease;
    }
    .cmh-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: var(--cmh-cream);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cmh-btn:hover { color: var(--cmh-g); }
    .cmh-btn:hover::before { transform: scaleX(1); }
    .cmh-btn-label, .cmh-btn-arrow {
      position: relative;
      z-index: 1;
    }
    .cmh-btn-arrow {
      font-size: 1.1rem;
      transition: transform 0.3s ease;
    }
    .cmh-btn:hover .cmh-btn-arrow { transform: translate(3px, 3px); }

    /* Facebook link */
    .cmh-fb-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--cmh-muted);
      border-bottom: 1px solid rgba(240, 229, 209, 0.18);
      padding-bottom: 2px;
      transition: color 0.3s ease, border-color 0.3s ease;
    }
    .cmh-fb-link:hover {
      color: var(--cmh-cream);
      border-color: var(--cmh-gold);
    }

    /* Stats */
    .cmh-stats {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      opacity: 0;
      animation: cmhUp 0.7s ease forwards 1.12s;
    }
    .cmh-stat {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .cmh-stat-val {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.6rem;
      font-weight: 700;
      font-style: normal;
      color: var(--cmh-cream);
      line-height: 1;
    }
    .cmh-stat-lbl {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cmh-muted);
    }
    .cmh-stat-rule {
      display: inline-block;
      width: 1px;
      height: 34px;
      background-color: rgba(240, 229, 209, 0.13);
    }

    /* ── RIGHT PANEL ── */
    .cmh-right {
      position: relative;
      overflow: hidden;
      background-color: var(--cmh-gd);
      /* Corte diagonal: borde izquierdo en pico, sin línea blanca */
      clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
      margin-left: -80px;
    }
    .cmh-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      animation: cmhZoom 10s ease forwards;
    }
    .cmh-photo-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        110deg,
        rgba(13, 26, 19, 0.68) 0%,
        rgba(13, 26, 19, 0.22) 45%,
        rgba(13, 26, 19, 0.04) 100%
      );
      z-index: 1;
    }
    .cmh-photo-grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0.055;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* Fresh badge */
    .cmh-fresh-tag {
      position: absolute;
      bottom: 3rem;
      right: 2.5rem;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      border-right: 3px solid var(--cmh-gold);
      padding-right: 1rem;
      opacity: 0;
      animation: cmhUp 0.7s ease forwards 1.28s;
    }
    .cmh-fresh-plus {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cmh-gold);
      line-height: 1;
    }
    .cmh-fresh-word {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 2.4rem;
      font-weight: 800;
      font-style: italic;
      color: var(--cmh-cream);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .cmh-fresh-sub {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.67rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(240, 229, 209, 0.52);
      margin-top: 5px;
    }

    /* ── ANIMATIONS ── */
    @keyframes cmhUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes cmhPulse {
      0%, 100% { transform: scale(1);   opacity: 1;   }
      50%       { transform: scale(1.5); opacity: 0.5; }
    }
    @keyframes cmhZoom {
      from { transform: scale(1.07); }
      to   { transform: scale(1);    }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .cmh-wrap {
        grid-template-columns: 1fr;
        padding-top: 70px;
        min-height: auto;
      }
      .cmh-left {
        clip-path: none;
        padding: 3rem 1.75rem 2.5rem;
        order: 2;
      }
      .cmh-right {
        clip-path: none;
        margin-left: 0;
        order: 1;
        height: 55vw;
        min-height: 260px;
      }
      .cmh-h1, .cmh-h2 {
        font-size: clamp(4rem, 14vw, 6.5rem);
      }
      .cmh-fresh-tag {
        bottom: 1.5rem;
        right: 1.5rem;
      }
    }
    @media (max-width: 575px) {
      .cmh-wrap { padding-top: 65px; }
      .cmh-left { padding: 2.5rem 1.25rem 2rem; }
      .cmh-h1, .cmh-h2 {
        font-size: clamp(3.5rem, 16vw, 5rem);
      }
      .cmh-h2 { -webkit-text-stroke-width: 1.5px; }
      .cmh-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — NOSOTROS (ABOUT) SECTION
       Prefix: cmn-  (CM Nosotros)
       ═══════════════════════════════════════════════════════════ */

    /* Reset outer section */
    section#about.cmn-root {
      padding: 0 !important;
      background: #F9F4EC !important;
      overflow: hidden;
    }

    /* Shared tokens */
    .cmn-wrap {
      --cmn-green: #182F26;
      --cmn-dark:  #0D1A13;
      --cmn-cream: #F9F4EC;
      --cmn-rust:  #B84A2A;
      --cmn-gold:  #C49A35;
      --cmn-text:  #2A3A30;
      --cmn-muted: #6B7E72;
      display: grid;
      grid-template-columns: 46fr 54fr;
      min-height: 640px;
      max-width: 1320px;
      margin: 0 auto;
      padding: 6rem 4rem 6rem 3rem;
      gap: 5rem;
      align-items: center;
    }

    /* ── IMAGE COLUMN ── */
    .cmn-images {
      position: relative;
      height: 580px;
    }

    /* Main large image */
    .cmn-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 73%;
      height: 82%;
      overflow: hidden;
    }
    .cmn-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .cmn-img-main:hover img { transform: scale(1.04); }

    /* Secondary overlapping image */
    .cmn-img-side {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 56%;
      height: 50%;
      overflow: hidden;
      outline: 6px solid var(--cmn-cream);
    }
    .cmn-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .cmn-img-side:hover img { transform: scale(1.04); }

    /* Badge on secondary image — posicionado respecto a .cmn-images */
    .cmn-badge {
      position: absolute;
      bottom: 0;
      left: calc(44% - 28px);
      background-color: var(--cmn-green);
      color: #F0E5D1;
      padding: 1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      z-index: 5;
    }
    .cmn-badge-num {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 2.6rem;
      font-weight: 900;
      line-height: 1;
      color: var(--cmn-gold);
    }
    .cmn-badge-txt {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      line-height: 1.55;
      color: rgba(240,229,209,0.75);
    }

    /* Ghost editorial number */
    .cmn-img-num {
      position: absolute;
      top: -0.1em;
      right: calc(55% - 8px);
      font-family: 'Fraunces', Georgia, serif;
      font-size: 10rem;
      font-weight: 900;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(24, 47, 38, 0.1);
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }

    /* Gold accent bar — top-left corner of main image */
    .cmn-img-accent {
      position: absolute;
      top: -16px;
      left: -16px;
      width: 56px;
      height: 56px;
      border-top: 2px solid var(--cmn-gold);
      border-left: 2px solid var(--cmn-gold);
    }

    /* ── CONTENT COLUMN ── */
    .cmn-content { padding: 0.5rem 0; }

    /* Section marker */
    .cmn-marker {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .cmn-marker-line {
      display: inline-block;
      width: 40px;
      height: 1px;
      background-color: var(--cmn-rust);
      flex-shrink: 0;
    }
    .cmn-marker-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.76rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cmn-rust);
    }

    /* Heading */
    .cmn-heading {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.1rem, 3.2vw, 3.3rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--cmn-green);
      margin: 0 0 1.5rem;
    }
    .cmn-heading em {
      font-style: italic;
      font-weight: 800;
      color: var(--cmn-rust);
    }

    /* Body copy */
    .cmn-body {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.84;
      color: var(--cmn-text);
      max-width: 480px;
      margin: 0 0 1.75rem;
    }

    /* Origin timeline quote */
    .cmn-origin {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      margin-bottom: 2.5rem;
    }
    .cmn-origin-dot {
      flex-shrink: 0;
      margin-top: 0.55rem;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background-color: var(--cmn-gold);
    }
    .cmn-origin-text {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      font-style: italic;
      font-weight: 300;
      color: var(--cmn-muted);
      line-height: 1.72;
      margin: 0;
      border-left: 1px solid rgba(196, 154, 53, 0.3);
      padding-left: 1rem;
    }

    /* Values list */
    .cmn-values {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      margin-bottom: 2.75rem;
    }
    .cmn-val {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .cmn-val-icon {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(24, 47, 38, 0.15);
      color: var(--cmn-green);
      font-size: 1rem;
    }
    .cmn-val-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--cmn-green);
      margin: 0 0 3px;
      line-height: 1.2;
    }
    .cmn-val-desc {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--cmn-muted);
      margin: 0;
      line-height: 1.55;
    }

    /* CTA link */
    .cmn-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      letter-spacing: 0.08em;
      color: var(--cmn-green);
      border-bottom: 1px solid rgba(24, 47, 38, 0.35);
      padding-bottom: 4px;
      transition: color 0.3s ease, border-color 0.3s ease;
    }
    .cmn-cta:hover {
      color: var(--cmn-rust);
      border-color: var(--cmn-rust);
    }
    .cmn-cta i { transition: transform 0.3s ease; }
    .cmn-cta:hover i { transform: translateX(4px); }

    /* Responsive */
    @media (max-width: 991px) {
      .cmn-wrap {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        gap: 3rem;
      }
      .cmn-images { height: 420px; }
      .cmn-img-num { font-size: 6.5rem; }
    }
    @media (max-width: 575px) {
      .cmn-images { height: 300px; }
      .cmn-img-num { display: none; }
      .cmn-badge { left: 0; }
      .cmn-img-accent { display: none; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — GALERÍA (PORTFOLIO) SECTION
       Prefix: cmg-  (CM Galería)
       3 × 3 grid — full editorial dark treatment
       ═══════════════════════════════════════════════════════════ */

    section#portfolio.cmg-root {
      padding: 0 !important;
      background: #0e2018 !important;
      overflow: hidden;
    }

    /* ── Header band ── */
    .cmg-header {
      max-width: 1320px;
      margin: 0 auto;
      padding: 5rem 3rem 3.5rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
    }
    .cmg-header-left { flex: 1; }
    .cmg-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }
    .cmg-eyebrow-line {
      display: inline-block;
      width: 36px;
      height: 1px;
      background-color: #C49A35;
      flex-shrink: 0;
    }
    .cmg-eyebrow-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.74rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #C49A35;
    }
    .cmg-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.3rem, 4vw, 4rem);
      font-weight: 900;
      line-height: 1.05;
      color: #F0E5D1;
      letter-spacing: -0.025em;
      margin: 0;
    }
    .cmg-title em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px #B84A2A;
    }
    .cmg-subtitle {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      font-weight: 300;
      color: rgba(240, 229, 209, 0.45);
      margin: 0.75rem 0 0;
      max-width: 440px;
      line-height: 1.72;
    }
    .cmg-header-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(240, 229, 209, 0.55);
      border-bottom: 1px solid rgba(240, 229, 209, 0.18);
      padding-bottom: 3px;
      white-space: nowrap;
      transition: color 0.3s ease, border-color 0.3s ease;
      flex-shrink: 0;
      align-self: flex-end;
      margin-bottom: 0.25rem;
    }
    .cmg-header-cta:hover {
      color: #C49A35;
      border-color: #C49A35;
    }

    /* ── Divider bar ── */
    .cmg-divider {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 3rem;
    }
    .cmg-divider-line {
      height: 1px;
      background: linear-gradient(
        to right,
        transparent,
        rgba(196, 154, 53, 0.25) 20%,
        rgba(196, 154, 53, 0.25) 80%,
        transparent
      );
    }

    /* ── Grid ── */
    .cmg-grid-wrap {
      max-width: 1320px;
      margin: 0 auto;
      padding: 2.5rem 3rem 5rem;
    }
    .cmg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    /* ── Individual cell ── */
    .cmg-cell {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background-color: #0D1A13;
      cursor: pointer;
    }
    .cmg-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      display: block;
    }
    .cmg-cell:hover img { transform: scale(1.07); }

    /* Dark veil baseline */
    .cmg-cell::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(13, 26, 19, 0.88) 0%,
        rgba(13, 26, 19, 0.18) 45%,
        transparent 100%
      );
      z-index: 1;
      transition: opacity 0.45s ease;
    }
    /* Extra overlay on hover */
    .cmg-cell::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(13, 26, 19, 0.38);
      z-index: 2;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .cmg-cell:hover::after { opacity: 1; }

    /* Category pill bottom-left */
    .cmg-cat {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      z-index: 3;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.65rem;
      font-style: italic;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #C49A35;
      background: rgba(13, 26, 19, 0.72);
      padding: 0.3rem 0.7rem;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      transition: opacity 0.35s ease;
    }

    /* Fullscreen icon top-right (appears on hover) */
    .cmg-zoom {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: rgba(196, 154, 53, 0.15);
      border: 1px solid rgba(196, 154, 53, 0.35);
      color: #C49A35;
      font-size: 0.85rem;
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
      text-decoration: none;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .cmg-cell:hover .cmg-zoom {
      opacity: 1;
      transform: scale(1);
    }
    .cmg-zoom:hover { background: rgba(196, 154, 53, 0.32); }

    /* Gold top-border accent on first row */
    .cmg-cell.cmg-accent-top {
      border-top: 2px solid #C49A35;
    }

    /* Celdas ocultas (cargar más) */
    .cmg-cell.cmg-hidden {
      display: none;
    }

    /* Botón Cargar más */
    .cmg-load-more-wrap {
      display: flex;
      justify-content: center;
      padding: 2.5rem 3rem 4.5rem;
    }
    .cmg-load-more {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.9rem 2.4rem;
      background: transparent;
      color: #C49A35;
      border: 1px solid #C49A35;
      font-family: 'Poppins', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s, color 0.25s;
    }
    .cmg-load-more:hover {
      background: #C49A35;
      color: #0e2018;
    }
    .cmg-load-more i {
      font-size: 1rem;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .cmg-header { flex-direction: column; align-items: flex-start; padding: 4rem 2rem 2.5rem; }
      .cmg-grid-wrap { padding: 2rem 2rem 4rem; }
      .cmg-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    }
    @media (max-width: 575px) {
      .cmg-grid { grid-template-columns: 1fr; gap: 6px; }
      .cmg-header { padding: 3rem 1.25rem 2rem; }
      .cmg-grid-wrap { padding: 1.5rem 1.25rem 3.5rem; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — PRODUCTOS / SERVICIOS SECTION
       Prefix: cms-  (CM Services)
       3 primary service cards + secondary strip
       ═══════════════════════════════════════════════════════════ */

    section#services.cms-root {
      padding: 0 !important;
      background: #F9F4EC !important;
      overflow: hidden;
    }

    /* Per-service accent colors */
    .cms-card[data-service="almacen"]   { --cms-accent: #182F26; --cms-accent-light: rgba(24,47,38,0.08); }
    .cms-card[data-service="carniceria"]{ --cms-accent: #B84A2A; --cms-accent-light: rgba(184,74,42,0.08); }
    .cms-card[data-service="local"]{ --cms-accent: #C49A35; --cms-accent-light: rgba(196,154,53,0.09); }

    /* ── Section header ── */
    .cms-header {
      max-width: 1320px;
      margin: 0 auto;
      padding: 5.5rem 3rem 3.5rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
    }
    .cms-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }
    .cms-eyebrow-line {
      display: inline-block;
      width: 36px;
      height: 1px;
      background: #B84A2A;
      flex-shrink: 0;
    }
    .cms-eyebrow-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.74rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #B84A2A;
    }
    .cms-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.3rem, 3.5vw, 3.6rem);
      font-weight: 900;
      color: #182F26;
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin: 0;
    }
    .cms-title em {
      font-style: italic;
      font-weight: 800;
      color: #B84A2A;
    }
    .cms-tagline {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      font-weight: 300;
      color: #6B7E72;
      margin: 0.75rem 0 0;
      line-height: 1.72;
      max-width: 420px;
    }

    /* ── Cards grid ── */
    .cms-grid-wrap {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 3rem 4rem;
    }
    .cms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* ── Service card ── */
    .cms-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(24, 47, 38, 0.09);
      padding: 2.25rem 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    }
    /* Sliding accent bar — enters from left on hover */
    .cms-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0;
      background-color: var(--cms-accent);
      transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cms-card:hover::before  { width: 100%; }
    /* Soft veil that tints the card on hover */
    .cms-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background-color: var(--cms-accent-light);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .cms-card:hover::after   { opacity: 1; }
    .cms-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 56px rgba(24, 47, 38, 0.12);
      border-color: rgba(24, 47, 38, 0.16);
    }

    /* Ghost number */
    .cms-ghost-num {
      position: absolute;
      top: -0.25em;
      right: 0.2em;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 7rem;
      font-weight: 900;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px var(--cms-accent);
      opacity: 0.07;
      line-height: 1;
      user-select: none;
      pointer-events: none;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .cms-card:hover .cms-ghost-num {
      opacity: 0.14;
      transform: scale(1.06) translateY(-4px);
    }

    /* Icon */
    .cms-icon-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background-color: rgba(42,58,48,0.09);
      color: var(--cms-accent);
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      flex-shrink: 0;
      transition: background-color 0.35s ease, transform 0.35s ease, color 0.35s ease;
      position: relative;
      z-index: 1;
    }
    .cms-card:hover .cms-icon-wrap {
      background-color: rgba(42,58,48,0.18);
      color: var(--cms-accent);
      transform: scale(1.1);
    }

    /* Service number badge */
    .cms-num {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cms-accent);
      opacity: 0.65;
      margin-bottom: 0.5rem;
      display: block;
      position: relative;
      z-index: 1;
    }

    /* Card title */
    .cms-card-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: #182F26;
      margin: 0 0 0.85rem;
      line-height: 1.15;
      letter-spacing: -0.015em;
      position: relative;
      z-index: 1;
    }

    /* Card description */
    .cms-card-desc {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      font-weight: 300;
      color: #6B7E72;
      line-height: 1.78;
      margin: 0 0 1.5rem;
      flex: 1;
      position: relative;
      z-index: 1;
    }

    /* Items list */
    .cms-items {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      position: relative;
      z-index: 1;
    }
    .cms-items li {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.92rem;
      font-weight: 400;
      color: #2A3A30;
      line-height: 1.35;
    }
    .cms-items li i {
      font-size: 0.85rem;
      color: var(--cms-accent);
      flex-shrink: 0;
    }

    /* Card link */
    .cms-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cms-accent);
      border-bottom: 1px solid rgba(0,0,0,0.1);
      padding-bottom: 3px;
      margin-top: auto;
      align-self: flex-start;
      position: relative;
      z-index: 1;
      transition: border-color 0.3s ease, gap 0.3s ease, color 0.3s ease;
    }
    .cms-card-link i {
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cms-card-link:hover {
      border-color: var(--cms-accent);
      gap: 0.9rem;
    }
    .cms-card-link:hover i {
      transform: translate(4px, -2px);
    }

    /* ── Secondary strip ── */
    .cms-strip {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 3rem 5.5rem;
    }
    .cms-strip-inner {
      border-top: 1px solid rgba(24, 47, 38, 0.1);
      padding-top: 2.5rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .cms-strip-label {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: #182F26;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .cms-strip-items {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      flex: 1;
    }
    .cms-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fff;
      border: 1px solid rgba(24, 47, 38, 0.14);
      padding: 0.45rem 1rem;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      font-weight: 400;
      color: #2A3A30;
      transition: border-color 0.25s ease, background 0.25s ease;
    }
    .cms-pill i {
      font-size: 0.8rem;
      color: #C49A35;
    }
    .cms-pill:hover {
      background: #f0f5f2;
      border-color: #182F26;
    }
    .cms-strip-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      background: #182F26;
      color: #F0E5D1;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      letter-spacing: 0.07em;
      padding: 0.6rem 1.4rem;
      flex-shrink: 0;
      transition: background 0.3s ease;
      margin-left: auto;
    }
    .cms-strip-cta:hover { background: #0e2018; color: #F0E5D1; }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .cms-grid { grid-template-columns: 1fr; gap: 1rem; }
      .cms-header { flex-direction: column; padding: 4rem 2rem 2.5rem; }
      .cms-grid-wrap { padding: 0 2rem 3rem; }
      .cms-strip { padding: 0 2rem 4rem; }
      .cms-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
      }
      .cms-strip-cta { margin-left: 0; width: 100%; justify-content: center; }
      .cms-strip-items { gap: 0.6rem; }
    }
    @media (max-width: 575px) {
      .cms-header { padding: 3rem 1.25rem 2rem; }
      .cms-grid-wrap { padding: 0 1.25rem 2.5rem; }
      .cms-strip { padding: 0 1.25rem 3.5rem; }
      .cms-ghost-num { font-size: 5rem; }
      .cms-pill { font-size: 0.84rem; padding: 0.4rem 0.85rem; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — ¿POR QUÉ ELEGIRNOS? SECTION
       Prefix: cmw-  (CM Why Us)
       Dark-green full-bleed · stat counters · 4-value grid · CTA
       ═══════════════════════════════════════════════════════════ */

    section#why-us.cmw-root {
      padding: 0 !important;
      background: #182F26 !important;
      overflow: hidden;
      position: relative;
    }

    /* Background texture rings */
    .cmw-bg-ring {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .cmw-bg-ring-1 {
      width: 700px; height: 700px;
      top: -250px; right: -200px;
      border: 1px solid rgba(196,154,53,0.06);
    }
    .cmw-bg-ring-1::before {
      content: '';
      position: absolute;
      inset: 80px;
      border-radius: 50%;
      border: 1px solid rgba(196,154,53,0.04);
    }
    .cmw-bg-ring-2 {
      width: 480px; height: 480px;
      bottom: -160px; left: -140px;
      border: 1px solid rgba(196,154,53,0.05);
    }

    /* ── Inner wrapper ── */
    .cmw-wrap {
      --cmw-cream: #F0E5D1;
      --cmw-gold:  #C49A35;
      --cmw-rust:  #B84A2A;
      --cmw-muted: rgba(240,229,209,0.48);
      max-width: 1320px;
      margin: 0 auto;
      padding: 6rem 3rem;
      position: relative;
      z-index: 1;
    }

    /* ── Header ── */
    .cmw-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 4.5rem;
    }
    .cmw-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }
    .cmw-eyebrow-line {
      display: inline-block;
      width: 36px; height: 1px;
      background: var(--cmw-gold);
      flex-shrink: 0;
    }
    .cmw-eyebrow-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.74rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cmw-gold);
    }
    .cmw-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.4rem, 3.8vw, 4rem);
      font-weight: 900;
      color: var(--cmw-cream);
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin: 0;
    }
    .cmw-title em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--cmw-rust);
    }
    .cmw-subtitle {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      font-weight: 300;
      color: var(--cmw-muted);
      line-height: 1.72;
      max-width: 400px;
      margin: 0;
    }

    /* ── Stats row ── */
    .cmw-stats {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 4.5rem;
      border-top: 1px solid rgba(240,229,209,0.1);
      border-bottom: 1px solid rgba(240,229,209,0.1);
      padding: 2rem 0;
    }
    .cmw-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1.5rem;
      position: relative;
    }
    .cmw-stat + .cmw-stat::before {
      content: '';
      position: absolute;
      left: 0; top: 10%; height: 80%;
      width: 1px;
      background: rgba(240,229,209,0.12);
    }
    .cmw-stat-val {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.8rem, 4vw, 4.5rem);
      font-weight: 900;
      font-style: italic;
      color: var(--cmw-gold);
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 0.1em;
    }
    .cmw-stat-unit {
      font-size: 0.55em;
      font-weight: 700;
      font-style: normal;
    }
    .cmw-stat-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--cmw-muted);
      margin-top: 0.5rem;
    }

    /* ── Values grid ── */
    .cmw-values {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    .cmw-val {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(240,229,209,0.08);
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    }
    /* animated bottom bar */
    .cmw-val::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      height: 2px; width: 0;
      background: var(--cmw-gold);
      transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
    }
    .cmw-val:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(196,154,53,0.25);
      transform: translateY(-4px);
    }
    .cmw-val:hover::before { width: 100%; }

    /* Icon */
    .cmw-val-icon {
      font-size: 1.6rem;
      color: var(--cmw-gold);
      margin-bottom: 1.25rem;
      display: block;
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .cmw-val:hover .cmw-val-icon {
      transform: scale(1.18) rotate(-5deg);
    }

    /* Val number */
    .cmw-val-num {
      position: absolute;
      top: 0.6rem; right: 1rem;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 4.5rem;
      font-weight: 900;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(196,154,53,0.1);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .cmw-val:hover .cmw-val-num {
      opacity: 1.8;
      transform: scale(1.05);
    }

    .cmw-val-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--cmw-cream);
      margin: 0 0 0.65rem;
      line-height: 1.2;
    }
    .cmw-val-desc {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--cmw-muted);
      line-height: 1.72;
      margin: 0;
    }

    /* ── CTA Banner ── */
    .cmw-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      border: 1px solid rgba(240,229,209,0.1);
      padding: 2.25rem 2.5rem;
      position: relative;
      overflow: hidden;
    }
    /* animated sweep on hover */
    .cmw-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.03);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
    }
    .cmw-cta:hover::before { transform: scaleX(1); }

    .cmw-cta-text { position: relative; z-index: 1; }
    .cmw-cta-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--cmw-cream);
      margin: 0 0 0.4rem;
      line-height: 1.2;
    }
    .cmw-cta-subtitle {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--cmw-muted);
      margin: 0;
    }
    .cmw-cta-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .cmw-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      background: var(--cmw-rust);
      color: var(--cmw-cream);
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.92rem;
      letter-spacing: 0.06em;
      padding: 0.8rem 1.6rem;
      position: relative;
      overflow: hidden;
      transition: color 0.38s ease;
    }
    .cmw-btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--cmw-cream);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
    }
    .cmw-btn-primary:hover { color: #182F26; }
    .cmw-btn-primary:hover::before { transform: scaleX(1); }
    .cmw-btn-primary span, .cmw-btn-primary i { position: relative; z-index: 1; }

    .cmw-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      letter-spacing: 0.08em;
      color: var(--cmw-muted);
      border-bottom: 1px solid rgba(240,229,209,0.18);
      padding-bottom: 2px;
      transition: color 0.3s ease, border-color 0.3s ease;
    }
    .cmw-btn-secondary:hover {
      color: var(--cmw-cream);
      border-color: var(--cmw-gold);
    }

    /* ── Responsive ── */
    @media (max-width: 1199px) {
      .cmw-values { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 767px) {
      .cmw-wrap { padding: 4rem 2rem; }
      .cmw-header { flex-direction: column; align-items: flex-start; margin-bottom: 3rem; }
      .cmw-stats { flex-wrap: wrap; gap: 2rem; }
      .cmw-stat + .cmw-stat::before { display: none; }
      .cmw-stat { flex: 1 1 calc(50% - 1rem); }
      .cmw-cta { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 575px) {
      .cmw-wrap { padding: 3.5rem 1.25rem; }
      .cmw-values { grid-template-columns: 1fr; gap: 1rem; }
      .cmw-stat { flex: 1 1 100%; }
      .cmw-cta-actions { flex-direction: column; align-items: flex-start; width: 100%; }
      .cmw-btn-primary { width: 100%; justify-content: center; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — OFERTAS (PRICING) SECTION
       Prefix: cmp-  (CM Pricing)
       Matiz crema #F9F4EC — igual que Nosotros
       ═══════════════════════════════════════════════════════════ */

    section#pricing.cmp-root {
      padding: 0 !important;
      background: #F9F4EC !important;
      overflow: hidden;
    }

    /* Shared tokens */
    .cmp-wrap {
      --cmp-green:  #182F26;
      --cmp-dark:   #0D1A13;
      --cmp-cream:  #F9F4EC;
      --cmp-rust:   #B84A2A;
      --cmp-gold:   #C49A35;
      --cmp-text:   #2A3A30;
      --cmp-muted:  #6B7E72;
      max-width: 1320px;
      margin: 0 auto;
      padding: 6rem 3rem;
    }

    /* ── Header ── */
    .cmp-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 4rem;
    }
    .cmp-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }
    .cmp-eyebrow-line {
      display: inline-block;
      width: 36px; height: 1px;
      background: var(--cmp-rust);
      flex-shrink: 0;
    }
    .cmp-eyebrow-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.74rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cmp-rust);
    }
    .cmp-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.3rem, 3.5vw, 3.6rem);
      font-weight: 900;
      color: var(--cmp-green);
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin: 0;
    }
    .cmp-title em {
      font-style: italic;
      font-weight: 800;
      color: var(--cmp-rust);
    }
    .cmp-subtitle {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1rem;
      font-weight: 300;
      color: var(--cmp-muted);
      margin: 0;
      max-width: 360px;
      line-height: 1.72;
    }

    /* ── Cards grid ── */
    .cmp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3.5rem;
      align-items: start;
    }

    /* ── Base card ── */
    .cmp-card {
      background: #fff;
      border: 1px solid rgba(24, 47, 38, 0.09);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }
    .cmp-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(24, 47, 38, 0.11);
      border-color: rgba(24, 47, 38, 0.18);
    }

    /* Sliding bottom bar */
    .cmp-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      height: 3px; width: 0;
      background: var(--cmp-green);
      transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cmp-card:hover::before { width: 100%; }

    /* ── Featured card override ── */
    .cmp-card.cmp-featured {
      background: var(--cmp-green);
      border-color: transparent;
    }
    .cmp-card.cmp-featured::before { background: var(--cmp-gold); }
    .cmp-card.cmp-featured:hover {
      box-shadow: 0 32px 64px rgba(13, 26, 19, 0.28);
    }

    /* ── Card top band ── */
    .cmp-card-top {
      padding: 2rem 2rem 1.5rem;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      position: relative;
    }
    /* Ghost number in top-right */
    .cmp-card-top::after {
      content: attr(data-num);
      position: absolute;
      top: 0.2rem; right: 1rem;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 5.5rem;
      font-weight: 900;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(24, 47, 38, 0.07);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      transition: opacity 0.4s ease;
    }
    .cmp-card.cmp-featured .cmp-card-top::after {
      -webkit-text-stroke-color: rgba(240, 229, 209, 0.1);
    }
    .cmp-card:hover .cmp-card-top::after { opacity: 1.6; }

    /* Icon */
    .cmp-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px; height: 50px;
      border-radius: 50%;
      background: rgba(42,58,48,0.09);
      color: #000000;
      font-size: 1.4rem;
      flex-shrink: 0;
      transition: background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .cmp-card:hover .cmp-icon {
      background: rgba(42,58,48,0.18);
      color: #000000;
      transform: scale(1.1);
    }
    .cmp-card.cmp-featured .cmp-icon {
      background: rgba(196, 154, 53, 0.18);
      color: var(--cmp-gold);
    }
    .cmp-card.cmp-featured:hover .cmp-icon {
      background: var(--cmp-gold);
      color: var(--cmp-green);
    }

    /* Badge */
    .cmp-badge {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.62rem;
      font-style: italic;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.28rem 0.7rem;
      border: 1px solid rgba(24, 47, 38, 0.18);
      color: var(--cmp-muted);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .cmp-card.cmp-featured .cmp-badge {
      border-color: rgba(196, 154, 53, 0.35);
      color: var(--cmp-gold);
    }

    /* ── Card body ── */
    .cmp-card-body {
      padding: 0 2rem 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Service title */
    .cmp-service-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: var(--cmp-green);
      margin: 0 0 0.35rem;
      line-height: 1.1;
      letter-spacing: -0.015em;
    }
    .cmp-card.cmp-featured .cmp-service-title { color: #F0E5D1; }

    /* Tagline */
    .cmp-service-tag {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.9rem;
      font-weight: 300;
      font-style: italic;
      color: var(--cmp-muted);
      margin: 0 0 1.5rem;
    }
    .cmp-card.cmp-featured .cmp-service-tag {
      color: rgba(240, 229, 209, 0.55);
    }

    /* Divider */
    .cmp-divider {
      height: 1px;
      background: rgba(24, 47, 38, 0.08);
      margin-bottom: 1.5rem;
    }
    .cmp-card.cmp-featured .cmp-divider {
      background: rgba(240, 229, 209, 0.1);
    }

    /* Items list */
    .cmp-list {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      flex: 1;
    }
    .cmp-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--cmp-text);
      line-height: 1.4;
    }
    .cmp-list li i {
      font-size: 0.8rem;
      color: var(--cmp-green);
      flex-shrink: 0;
      margin-top: 0.25em;
    }
    .cmp-card.cmp-featured .cmp-list li { color: rgba(240, 229, 209, 0.78); }
    .cmp-card.cmp-featured .cmp-list li i { color: var(--cmp-gold); }

    /* CTA button */
    .cmp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      padding: 0.85rem 1.5rem;
      position: relative;
      overflow: hidden;
      transition: color 0.38s ease;
      border: 1px solid var(--cmp-green);
      color: var(--cmp-green);
      background: transparent;
    }
    .cmp-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--cmp-green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cmp-btn:hover { color: #F0E5D1; }
    .cmp-btn:hover::before { transform: scaleX(1); }
    .cmp-btn span { position: relative; z-index: 1; }

    /* Featured button */
    .cmp-card.cmp-featured .cmp-btn {
      background: var(--cmp-gold);
      border-color: var(--cmp-gold);
      color: var(--cmp-green);
    }
    .cmp-card.cmp-featured .cmp-btn::before { background: #F0E5D1; }
    .cmp-card.cmp-featured .cmp-btn:hover { color: var(--cmp-green); }

    /* Note under featured button */
    .cmp-note {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.76rem;
      font-style: italic;
      color: rgba(240, 229, 209, 0.45);
      text-align: center;
      margin-top: 0.75rem;
      display: block;
    }

    /* ── Bottom badge strip ── */
    .cmp-badges {
      display: flex;
      align-items: stretch;
      gap: 0;
      border: 1px solid rgba(24, 47, 38, 0.09);
      background: #fff;
      overflow: hidden;
    }
    .cmp-badge-item {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.4rem 1.5rem;
      position: relative;
      transition: background 0.3s ease;
    }
    .cmp-badge-item + .cmp-badge-item {
      border-left: 1px solid rgba(24, 47, 38, 0.08);
    }
    .cmp-badge-item:hover { background: #f4ede0; }
    .cmp-badge-item i {
      font-size: 1.4rem;
      color: var(--cmp-green);
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .cmp-badge-item:hover i { transform: scale(1.22); }
    .cmp-badge-item strong {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--cmp-green);
      display: block;
      line-height: 1.2;
    }
    .cmp-badge-item span {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.78rem;
      color: var(--cmp-muted);
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .cmp-wrap { padding: 4rem 2rem; }
      .cmp-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 3rem; }
      .cmp-grid { grid-template-columns: 1fr; }
      .cmp-badges { flex-direction: column; }
      .cmp-badge-item + .cmp-badge-item { border-left: none; border-top: 1px solid rgba(24,47,38,0.08); }
    }
    @media (max-width: 575px) {
      .cmp-wrap { padding: 3.5rem 1.25rem; }
      .cmp-card-top::after { font-size: 4rem; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — PREGUNTAS FRECUENTES (FAQ) SECTION
       Prefix: cmf-  (CM FAQ)
       Dark green — alterna después de cream Ofertas
       ═══════════════════════════════════════════════════════════ */

    /* ── Reset nuclear: anular TODO lo del template FAQ ── */
    section#faq.cmf-root,
    section#faq.cmf-root *:not(script):not(style) {
      box-sizing: border-box;
    }
    section#faq.cmf-root {
      padding: 0 !important;
      background: #182F26 !important;
      overflow: hidden;
      position: relative;
    }
    /* Destruir los card blancos del template */
    section#faq.cmf-root .faq-list {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }
    section#faq.cmf-root .faq-item {
      background: transparent !important;
      border-radius: 0 !important;
      overflow: visible !important;
      box-shadow: none !important;
      border: none !important;
      border-bottom: 1px solid rgba(240,229,209,0.1) !important;
      padding: 0 !important;
    }
    section#faq.cmf-root .faq-item:first-child {
      border-top: 1px solid rgba(240,229,209,0.1) !important;
    }
    section#faq.cmf-root .faq-item:hover {
      border-color: rgba(196,154,53,0.25) !important;
    }
    section#faq.cmf-root .faq-item.faq-active {
      border-color: rgba(196,154,53,0.25) !important;
      box-shadow: none !important;
    }
    /* Destruir background del template en faq-active question */
    section#faq.cmf-root .faq-item.faq-active .faq-question {
      background: transparent !important;
    }
    /* Tab content */
    section#faq.cmf-root .tab-content {
      border: none !important;
      background: transparent !important;
    }
    section#faq.cmf-root .tab-pane { padding: 0 !important; }

    /* Layout */
    .cmf-wrap {
      --cmf-cream: #F0E5D1;
      --cmf-gold:  #C49A35;
      --cmf-rust:  #B84A2A;
      --cmf-muted: rgba(240,229,209,0.55);
      max-width: 1320px;
      margin: 0 auto;
      padding: 6rem 3rem;
      display: grid;
      grid-template-columns: 36fr 64fr;
      gap: 5rem;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    /* ── LEFT COLUMN ── */
    .cmf-left { position: sticky; top: 110px; }

    .cmf-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }
    .cmf-eyebrow-line {
      display: inline-block;
      width: 36px; height: 1px;
      background: var(--cmf-gold);
      flex-shrink: 0;
    }
    .cmf-eyebrow-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.74rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cmf-gold);
    }
    .cmf-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.4rem, 3.5vw, 3.8rem);
      font-weight: 900;
      color: var(--cmf-cream);
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin: 0 0 1rem;
    }
    .cmf-title em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--cmf-rust);
    }
    .cmf-subtitle {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--cmf-muted);
      line-height: 1.78;
      margin: 0 0 2.5rem;
    }

    /* Category selectors */
    .cmf-cats {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.5rem !important;
      margin-bottom: 2.5rem;
      list-style: none;
      padding: 0;
    }
    .cmf-cat-btn {
      display: flex !important;
      align-items: center !important;
      gap: 0.85rem !important;
      width: 100% !important;
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid rgba(240,229,209,0.1) !important;
      border-radius: 0 !important;
      color: var(--cmf-muted) !important;
      padding: 0.9rem 1.25rem !important;
      text-align: left;
      cursor: pointer;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
    .cmf-cat-btn::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 0;
      background: var(--cmf-gold);
      transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .cmf-cat-btn.active {
      background: rgba(196,154,53,0.12) !important;
      border-color: rgba(196,154,53,0.35) !important;
      color: var(--cmf-cream) !important;
    }
    .cmf-cat-btn.active::before { width: 3px; }
    .cmf-cat-btn:hover:not(.active) {
      background: rgba(255,255,255,0.07) !important;
      border-color: rgba(240,229,209,0.2) !important;
      color: var(--cmf-cream) !important;
    }
    .cmf-cat-btn i {
      font-size: 1rem;
      color: var(--cmf-gold) !important;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .cmf-cat-name {
      flex: 1;
      font-weight: 400;
      position: relative;
      z-index: 1;
    }
    .cmf-cat-count {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 0.72rem;
      font-style: italic;
      color: var(--cmf-gold);
      opacity: 0.7;
      position: relative;
      z-index: 1;
    }

    /* CTA box */
    .cmf-cta-box {
      border: 1px solid rgba(240,229,209,0.12);
      background: rgba(255,255,255,0.03);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .cmf-cta-box > i {
      font-size: 1.4rem;
      color: var(--cmf-gold);
      margin-bottom: 0.25rem;
    }
    .cmf-cta-box h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--cmf-cream) !important;
      margin: 0;
      line-height: 1.2;
    }
    .cmf-cta-box p {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--cmf-muted) !important;
      margin: 0.25rem 0 0.75rem;
      line-height: 1.6;
    }
    .cmf-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.84rem;
      letter-spacing: 0.08em;
      color: var(--cmf-gold) !important;
      border-bottom: 1px solid rgba(196,154,53,0.35);
      padding-bottom: 2px;
      align-self: flex-start;
      transition: border-color 0.3s ease, gap 0.3s ease;
    }
    .cmf-cta-link i { transition: transform 0.3s ease; }
    .cmf-cta-link:hover { border-color: var(--cmf-gold); gap: 0.75rem; }
    .cmf-cta-link:hover i { transform: translateX(3px); }

    /* ── RIGHT COLUMN — acordeón ── */

    /* Pregunta */
    section#faq.cmf-root .faq-question {
      display: flex !important;
      align-items: center !important;
      gap: 1rem !important;
      padding: 1.4rem 0 !important;
      cursor: pointer;
      margin: 0 !important;
      font-family: 'Fraunces', Georgia, serif !important;
      font-size: 1rem !important;
      font-weight: 700 !important;
      color: rgba(240,229,209,0.72) !important;
      line-height: 1.35 !important;
      background: transparent !important;
      transition: color 0.3s ease;
      user-select: none;
    }
    section#faq.cmf-root .faq-item.faq-active .faq-question,
    section#faq.cmf-root .faq-question:hover {
      color: #F0E5D1 !important;
    }

    /* Ícono cuadrito */
    section#faq.cmf-root .faq-question .question-icon {
      flex-shrink: 0 !important;
      width: 32px !important;
      height: 32px !important;
      min-width: 32px;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: rgba(0,0,0,0.22) !important;
      border-radius: 50% !important;
      border: none !important;
      color: #C49A35 !important;
      font-size: 0.8rem !important;
      transition: background 0.3s ease !important;
    }
    section#faq.cmf-root .faq-question .question-icon i {
      color: #C49A35 !important;
      font-size: 0.8rem !important;
    }
    section#faq.cmf-root .faq-item.faq-active .faq-question .question-icon {
      background: rgba(0,0,0,0.35) !important;
    }

    /* Texto pregunta */
    section#faq.cmf-root .faq-question > span:not(.question-icon):not(.toggle-icon) {
      flex: 1;
    }

    /* Chevron */
    section#faq.cmf-root .faq-question .toggle-icon {
      flex-shrink: 0 !important;
      margin-left: auto;
      color: #C49A35 !important;
      font-size: 0.8rem !important;
      opacity: 0.55;
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease !important;
    }
    section#faq.cmf-root .faq-item.faq-active .faq-question .toggle-icon {
      transform: rotate(180deg) !important;
      opacity: 1 !important;
    }

    /* Respuesta — animación max-height */
    section#faq.cmf-root .faq-answer {
      display: block !important;
      max-height: 0 !important;
      overflow: hidden !important;
      opacity: 0 !important;
      padding: 0 !important;
      transition:
        max-height 0.5s cubic-bezier(0.22,1,0.36,1),
        opacity    0.38s ease,
        padding    0.38s ease !important;
    }
    section#faq.cmf-root .faq-item.faq-active .faq-answer {
      max-height: 600px !important;
      opacity: 1 !important;
      padding-bottom: 1.5rem !important;
    }
    section#faq.cmf-root .faq-answer p {
      font-family: 'Crimson Pro', Georgia, serif !important;
      font-size: 0.97rem !important;
      font-weight: 300 !important;
      color: rgba(240,229,209,0.6) !important;
      line-height: 1.82 !important;
      margin: 0 !important;
      padding-left: calc(30px + 1rem) !important;
      border-left: 2px solid rgba(196,154,53,0.25) !important;
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .cmf-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
      }
      .cmf-left { position: static; }
      .cmf-cats { flex-direction: row !important; flex-wrap: wrap !important; gap: 0.5rem !important; }
      .cmf-cat-btn { width: auto !important; flex: 1 1 auto !important; }
    }
    @media (max-width: 575px) {
      .cmf-wrap { padding: 3.5rem 1.25rem; }
      .cmf-cats { flex-direction: column !important; }
      .cmf-cat-btn { width: 100% !important; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — CONTACTO SECTION
       Prefix: cmc-  (CM Contact)
       Cream #F9F4EC — mismos matices que Nosotros
       ═══════════════════════════════════════════════════════════ */

    section#contact.cmc-root {
      padding: 0 !important;
      background: #F9F4EC !important;
      overflow: hidden;
    }

    .cmc-wrap {
      --cmc-green:  #182F26;
      --cmc-dark:   #0D1A13;
      --cmc-cream:  #F9F4EC;
      --cmc-gold:   #C49A35;
      --cmc-rust:   #B84A2A;
      --cmc-text:   #2A3A30;
      --cmc-muted:  #6B7E72;
      max-width: 1320px;
      margin: 0 auto;
      padding: 6rem 3rem;
      display: grid;
      grid-template-columns: 58fr 42fr;
      gap: 5rem;
      align-items: start;
    }

    /* ── LEFT COLUMN ── */

    .cmc-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1.1rem;
    }
    .cmc-eyebrow-line {
      display: inline-block;
      width: 36px; height: 1px;
      background: var(--cmc-gold);
      flex-shrink: 0;
    }
    .cmc-eyebrow-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.74rem;
      font-style: italic;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cmc-gold);
    }

    .cmc-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(2.4rem, 3.2vw, 3.6rem);
      font-weight: 900;
      color: var(--cmc-green);
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin: 0 0 0.6rem;
    }
    .cmc-title em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--cmc-rust);
    }

    .cmc-subtitle {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--cmc-muted);
      line-height: 1.75;
      margin: 0 0 2.75rem;
      max-width: 480px;
    }

    /* Info rows */
    .cmc-info-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 2.75rem;
      border-top: 1px solid rgba(42,58,48,0.1);
    }
    .cmc-info-row {
      display: flex;
      align-items: flex-start;
      gap: 1.35rem;
      padding: 1.4rem 0;
      border-bottom: 1px solid rgba(42,58,48,0.1);
      transition: background 0.25s ease;
    }
    .cmc-info-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(42,58,48,0.1);
      color: var(--cmc-green);
      font-size: 1.05rem;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .cmc-info-row:hover .cmc-info-icon {
      background: rgba(42,58,48,0.18);
      color: var(--cmc-rust);
    }
    .cmc-info-body {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .cmc-info-label {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cmc-gold);
    }
    .cmc-info-value {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--cmc-text);
      line-height: 1.4;
    }
    .cmc-info-note {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.84rem;
      font-weight: 300;
      color: var(--cmc-muted);
    }

    /* CTA button */
    .cmc-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--cmc-green);
      color: #F9F4EC;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      position: relative;
      overflow: hidden;
      transition: color 0.35s ease;
    }
    .cmc-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--cmc-rust);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .cmc-cta:hover::before { transform: scaleX(1); }
    .cmc-cta span, .cmc-cta i { position: relative; z-index: 1; }
    .cmc-cta i { font-size: 1rem; transition: transform 0.3s ease; }
    .cmc-cta:hover i { transform: translateX(4px); }
    .cmc-cta:hover { color: #F9F4EC; }

    /* ── RIGHT COLUMN — panel oscuro ── */
    .cmc-panel {
      background: var(--cmc-green);
      padding: 2.75rem 2.25rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      position: sticky;
      top: 110px;
    }

    /* Panel header */
    .cmc-panel-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.25rem;
    }
    .cmc-panel-eyebrow i {
      font-size: 0.75rem;
      color: var(--cmc-gold);
    }
    .cmc-panel-eyebrow span {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.72rem;
      font-style: italic;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--cmc-gold);
    }
    .cmc-panel-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.35rem;
      font-weight: 900;
      color: #F0E5D1;
      line-height: 1.15;
      margin: 0;
    }
    .cmc-panel-title em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px var(--cmc-rust);
    }

    /* Divider */
    .cmc-divider {
      height: 1px;
      background: rgba(240,229,209,0.1);
      margin: 0;
    }

    /* Metrics 2×2 */
    .cmc-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(240,229,209,0.08);
    }
    .cmc-metric {
      background: var(--cmc-green);
      padding: 1.25rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      transition: background 0.3s ease;
    }
    .cmc-metric:hover { background: rgba(255,255,255,0.04); }
    .cmc-metric-val {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--cmc-gold);
      line-height: 1;
      font-style: italic;
    }
    .cmc-metric-desc {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(240,229,209,0.55);
      line-height: 1.3;
    }

    /* Testimonial */
    .cmc-quote {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .cmc-quote-icon {
      font-size: 1.6rem;
      color: var(--cmc-gold);
      opacity: 0.5;
      line-height: 1;
    }
    .cmc-quote-text {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 1.02rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(240,229,209,0.72);
      line-height: 1.72;
      margin: 0;
      border-left: 2px solid rgba(196,154,53,0.3);
      padding-left: 1rem;
    }
    .cmc-quote-author {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding-left: 1rem;
    }
    .cmc-quote-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid rgba(196,154,53,0.3);
      flex-shrink: 0;
    }
    .cmc-quote-name {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 0.8rem;
      font-weight: 700;
      color: #F0E5D1;
      display: block;
    }
    .cmc-quote-role {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.76rem;
      font-weight: 300;
      color: rgba(240,229,209,0.45);
      display: block;
    }

    /* Social bar */
    .cmc-social {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.5rem;
      border-top: 1px solid rgba(240,229,209,0.08);
    }
    .cmc-social-label {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.78rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: rgba(240,229,209,0.4);
    }
    .cmc-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px; height: 34px;
      border: 1px solid rgba(240,229,209,0.15);
      color: rgba(240,229,209,0.6);
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
    .cmc-social a:hover {
      background: rgba(196,154,53,0.15);
      border-color: var(--cmc-gold);
      color: var(--cmc-gold);
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .cmc-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
      }
      .cmc-panel { position: static; }
      .cmc-metrics { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 767px) {
      .cmc-metrics { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 575px) {
      .cmc-wrap { padding: 3.5rem 1.25rem; }
      .cmc-title { font-size: 2.2rem; }
    }

    /* ═══════════════════════════════════════════════════════════
       CARLITOS MARÍA — FOOTER
       Prefix: cmft-  (CM Footer)
       Fondo crema #F0EBE1 — claro, legible, cálido
       ═══════════════════════════════════════════════════════════ */

    footer#footer.cmft-root {
      padding: 0 !important;
      background: #F0EBE1 !important;
      color: #2A3A30 !important;
    }
    /* Destruir clases dark-background del template */
    footer#footer.cmft-root,
    footer#footer.cmft-root * {
      --background-color: #F0EBE1;
      --default-color:    #2A3A30;
      --heading-color:    #182F26;
      --contrast-color:   #F9F4EC;
    }

    /* ── Variables locales ── */
    .cmft-body {
      --cmft-bg:     #F0EBE1;
      --cmft-green:  #182F26;
      --cmft-gold:   #C49A35;
      --cmft-rust:   #B84A2A;
      --cmft-text:   #2A3A30;
      --cmft-muted:  #6B7E72;
      --cmft-border: rgba(42,58,48,0.12);
      max-width: 1320px;
      margin: 0 auto;
      padding: 5rem 3rem 3rem;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.6fr;
      gap: 3.5rem;
      border-top: 3px solid var(--cmft-green);
    }

    /* ── Columna 1: Logo + descripción ── */
    .cmft-logo {
      display: block;
      height: 64px;
      width: auto;
      object-fit: contain;
      object-position: left center;
      margin-bottom: 1.25rem;
    }
    .cmft-brand-desc {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--cmft-muted);
      line-height: 1.8;
      margin: 0 0 1.5rem;
      max-width: 280px;
    }
    .cmft-fb-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--cmft-green);
      color: #F9F4EC;
      text-decoration: none;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 0.75rem 1.4rem;
      position: relative;
      overflow: hidden;
      transition: color 0.3s ease;
    }
    .cmft-fb-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--cmft-rust);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .cmft-fb-btn:hover::before { transform: scaleX(1); }
    .cmft-fb-btn span, .cmft-fb-btn i { position: relative; z-index: 1; }
    .cmft-fb-btn:hover { color: #F9F4EC; }

    /* ── Columnas 2 & 3: Nav links ── */
    .cmft-nav-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cmft-green);
      margin: 0 0 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .cmft-nav-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--cmft-border);
    }
    .cmft-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .cmft-nav-list a {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--cmft-muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      transition: color 0.25s ease, gap 0.25s ease;
    }
    .cmft-nav-list a i {
      font-size: 0.6rem;
      color: var(--cmft-gold);
      transition: transform 0.25s ease;
    }
    .cmft-nav-list a:hover {
      color: var(--cmft-green);
      gap: 0.65rem;
    }
    .cmft-nav-list a:hover i { transform: translateX(2px); }

    /* ── Columna 4: Contacto ── */
    .cmft-contact-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.75rem;
    }
    .cmft-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
    }
    .cmft-contact-icon {
      flex-shrink: 0;
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(42,58,48,0.1);
      color: var(--cmft-green);
      font-size: 0.85rem;
      transition: background 0.3s ease;
    }
    .cmft-contact-text {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--cmft-muted);
      line-height: 1.5;
      margin: 0;
      padding-top: 0.35rem;
    }
    .cmft-contact-text strong {
      display: block;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--cmft-gold);
      margin-bottom: 0.1rem;
    }

    .cmft-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      border: 1px solid var(--cmft-border);
      color: var(--cmft-muted);
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
    .cmft-social a:hover {
      background: var(--cmft-green);
      border-color: var(--cmft-green);
      color: #F9F4EC;
    }

    /* ── Bottom bar ── */
    .cmft-bottom {
      border-top: 1px solid rgba(42,58,48,0.12);
      background: #F0EBE1;
    }
    .cmft-bottom-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 1.25rem 3rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .cmft-copy {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.84rem;
      font-weight: 300;
      color: var(--cmft-muted);
      margin: 0;
    }
    .cmft-copy strong {
      font-weight: 600;
      color: var(--cmft-green);
    }
    .cmft-bottom-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .cmft-bottom-links a {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--cmft-muted);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .cmft-bottom-links a:hover { color: var(--cmft-green); }
    .cmft-credits {
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 0.78rem;
      font-weight: 300;
      color: rgba(107,126,114,0.6);
    }
    .cmft-credits a {
      color: var(--cmft-gold);
      text-decoration: none;
    }
    .cmft-credits a:hover { text-decoration: underline; }

    /* ── Responsive ── */
    @media (max-width: 1099px) {
      .cmft-body {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
      .cmft-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 767px) {
      .cmft-body {
        grid-template-columns: 1fr;
        padding: 3.5rem 1.5rem 2.5rem;
      }
      .cmft-brand { grid-column: auto; }
      .cmft-bottom-inner {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
      }
    }
    @media (max-width: 575px) {
      .cmft-body { padding: 3rem 1.25rem 2rem; }
    }
