:root {
  --primary: #0f2a4a;
  --primary-light: #1a3d63;
  --primary-dark: #091c33;
  --primary-darker: #060f1e;
  --gold: #c8a45e;
  --gold-hover: #b8923e;
  --gold-light: #d4b876;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #dde2ea;
  --gray-400: #8896a7;
  --gray-600: #5a6678;
  --gray-800: #3a4553;
  --text: #2c3440;
  --shadow-sm: 0 2px 8px rgba(15, 42, 74, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 42, 74, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 42, 74, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --danger: #e53e3e;
  --whatsapp: #25d366;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: clamp(1.25rem, 1.8vw, 1.375rem);
  --fs-xl: clamp(1.5rem, 2.2vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 3vw, 2.25rem);
  --fs-3xl: clamp(2rem, 3.5vw, 2.75rem);
  --fs-display: clamp(2.25rem, 4vw, 3.25rem);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-base);
  font-family: "Source Sans 3", sans-serif;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-gold {
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-hover);
  color: #fff;
  box-shadow: 0 8px 25px rgba(200, 164, 94, 0.4);
  transform: translateY(-2px);
}

.btn-gold i {
  font-size: var(--fs-sm);
}

.btn-gold.btn-lg {
  font-size: var(--fs-md);
  padding: 16px 36px;
}

.nav>.btn-gold,
.nav>.btn-gold:hover {
  color: #fff;
  font-weight: 700;
  background: var(--gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-base);
  font-family: "Source Sans 3", sans-serif;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.btn-outline {
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background var(--ease);
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  color: var(--primary);
  border-color: var(--primary);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-base);
  font-family: "Source Sans 3", sans-serif;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

.btn-primary-solid {
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.btn-primary-solid:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 25px rgba(15, 42, 74, 0.3);
  transform: translateY(-2px);
}

.top-bar {
  background: var(--primary-darker);
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease);
}

.top-bar-left a:hover {
  color: var(--gold-light);
}

.top-bar-left i {
  font-size: var(--fs-sm);
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  transition: color var(--ease);
}

.top-bar-right a:hover {
  color: var(--gold-light);
}

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: box-shadow var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.logo-hex {
  width: 58px;
  height: 58px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
}

.logo-hex-title {
  font-family: "Lora", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-hex-title em {
  font-style: italic;
}

.logo-hex-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 2px;
}

.logo-text {
  font-family: "Lora", serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--gold);
  font-style: italic;
}

.navbar {
  padding: 12px 0;
  box-shadow: 0 2px 12px rgba(15, 42, 74, 0.08);
}

.navbar-brand {
  padding: 0;
}

.navbar .nav-link {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible,
.navbar .nav-link.active {
  color: var(--primary);
  background: var(--gray-100);
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 11px;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--ease);
}

.navbar .nav-item.dropdown.show>.nav-link::after {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover>.nav-link::after {
    transform: rotate(180deg);
  }
}

.navbar .dropdown-menu {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 260px;
  margin-top: 6px;
  --bs-dropdown-link-active-bg: var(--gray-100);
  --bs-dropdown-link-active-color: var(--primary);
}

.navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: var(--fs-base);
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--off-white);
  color: var(--primary);
}

.navbar .dropdown-item i {
  width: 16px;
  text-align: center;
  color: var(--gold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.navbar .btn-gold {
  color: #fff;
  font-weight: 700;
}

.navbar-toggler {
  border: none;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .nav-item.dropdown:hover>.nav-link {
    color: var(--primary);
    background: var(--gray-100);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 2px solid var(--gold);
    margin-top: 12px;
    padding-bottom: 8px;
  }

  .navbar .nav-link {
    padding: 11px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .navbar .nav-item.dropdown .dropdown-menu {
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    background: var(--off-white);
    padding: 6px 0;
    margin: 0 0 4px 0;
    min-width: 0;
  }

  .navbar .dropdown-item {
    font-size: 0.82rem;
    padding: 8px 14px;
    color: var(--gray-700);
    border-bottom: none;
    gap: 8px;
  }

  .navbar .dropdown-item i {
    font-size: 0.7rem;
    width: 14px;
  }

  .navbar .dropdown-item:active,
  .navbar .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
  }

  .navbar .nav-item.ms-lg-2 {
    margin-top: 12px;
  }

  .navbar .btn-gold {
    display: flex;
    justify-content: center;
  }
}

.hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 164, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero .row {
  --bs-gutter-x: 3.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 94, 0.12);
  border: 1px solid rgba(200, 164, 94, 0.25);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge i {
  font-size: var(--fs-xs);
}

.hero h1 {
  font-size: var(--fs-3xl);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-desc {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.hero-card-label {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.hero-card-label i {
  margin-right: 6px;
}

.hero-stat {
  text-align: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-num {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero-stat-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  display: block;
}

.hero-bars {
  margin-top: 20px;
  display: flex;
  gap: 7px;
  align-items: flex-end;
  height: 55px;
}

.hero-bars span {
  flex: 1;
  background: linear-gradient(to top, rgba(200, 164, 94, 0.25), rgba(200, 164, 94, 0.55));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.hero-bars span:nth-child(1) {
  height: 40%;
}

.hero-bars span:nth-child(2) {
  height: 65%;
}

.hero-bars span:nth-child(3) {
  height: 45%;
}

.hero-bars span:nth-child(4) {
  height: 80%;
}

.hero-bars span:nth-child(5) {
  height: 55%;
}

.hero-bars span:nth-child(6) {
  height: 92%;
}

.hero-bars span:nth-child(7) {
  height: 68%;
}

.section {
  padding: 100px 0;
}

.section-header {
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 14px;
}

.section-header--sm {
  margin-bottom: 36px;
}

.section-header p {
  color: var(--gray-600);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.about-grid {
  --bs-gutter-x: 5rem;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img i {
  font-size: 3rem;
  color: var(--gray-400);
  opacity: 0.3;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about-accent {
    display: none;
  }
}

.about-content .section-label {
  justify-content: flex-start;
}

.about-content .section-label::before {
  display: none;
}

.about-content h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-600);
  font-size: var(--fs-md);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
  transition: gap var(--ease), color var(--ease);
}

.about-link:hover {
  gap: 14px;
  color: var(--gold);
}

.services {
  background: var(--off-white);
}

.srv-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.srv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.srv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.srv-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.srv-card:hover::before,
.srv-card.featured::before {
  transform: scaleX(1);
}

.srv-card.featured {
  border-color: var(--gold);
}

.srv-card.featured .srv-badge {
  display: inline-block;
}

.srv-badge {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(200, 164, 94, 0.12);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 50px;
}

.srv-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.15rem;
  transition: background var(--ease), color var(--ease);
}

.srv-card:hover .srv-icon {
  background: var(--primary);
  color: var(--gold-light);
}

.srv-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.srv-card p {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
}

.srv-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease), color var(--ease);
}

.srv-link:hover {
  gap: 10px;
  color: var(--gold-hover);
}

.why-band {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.why-band-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.why-band-header {
  margin-bottom: 64px;
}

.why-band-header h2 {
  color: #fff;
  font-size: var(--fs-2xl);
  margin-bottom: 12px;
}

.why-band-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-md);
  max-width: 100%;
  margin: 0 auto;
}

.why-band-label {
  color: var(--gold-light);
}

.why-band-label::before,
.why-band-label::after {
  background: var(--gold-light);
}

.why-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  backdrop-filter: blur(10px);
}

.why-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  min-width: 0;
}

.why-stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.why-stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.why-stat-num {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.why-stat-suffix {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why-stat strong {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.why-stat>span {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.why-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.why-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: default;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.why-pill i {
  color: var(--gold-light);
  font-size: var(--fs-sm);
}

.why-pill:hover {
  background: rgba(200, 164, 94, 0.15);
  border-color: rgba(200, 164, 94, 0.35);
  color: #fff;
}

@media (max-width: 767.98px) {
  .why-stats {
    flex-direction: column;
    gap: 32px;
    padding: 36px 24px;
  }

  .why-stat-divider {
    width: 60px;
    height: 1px;
  }

  .why-band-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575.98px) {
  .why-pills {
    gap: 8px;
  }

  .why-pill {
    font-size: var(--fs-sm);
    padding: 8px 16px;
  }
}

.process {
  background: var(--off-white);
}

.zz-steps {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 20px;
}

.zz-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
}

.zz-step {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 48px;
  position: relative;
}

.zz-step:last-child {
  margin-bottom: 0;
}

.zz-left {
  flex-direction: row;
}

.zz-left .zz-content {
  text-align: right;
  flex: 1;
}

.zz-left .zz-icon {
  order: 2;
}

.zz-right {
  flex-direction: row;
}

.zz-right .zz-content {
  text-align: left;
  flex: 1;
}

.zz-right .zz-icon {
  order: -1;
}

.zz-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(15, 42, 74, 0.2);
}

.zz-step:hover .zz-icon {
  background: var(--gold);
  color: #fff;
}

.zz-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zz-left .zz-content {
  flex-direction: row-reverse;
}

.zz-right .zz-content {
  flex-direction: row;
}

.zz-num {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  min-width: 56px;
}

.zz-body h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.zz-body p {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.stepper-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}

.stepper-row--alt {
  margin-bottom: 0;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  min-width: 0;
}

.stepper-bubble {
  position: relative;
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(15, 42, 74, 0.18);
  z-index: 2;
  cursor: default;
}

.stepper-bubble--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200, 164, 94, 0.28);
}

.stepper-step:hover .stepper-bubble {
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.22);
}

.stepper-step:hover .stepper-bubble--gold {
  box-shadow: 0 12px 30px rgba(200, 164, 94, 0.38);
}

.stepper-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: var(--fs-xs);
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.stepper-bubble--gold .stepper-num {
  background: var(--primary);
}

.stepper-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-light), rgba(15, 42, 74, 0.2));
  z-index: 1;
}

.stepper-connector--gold {
  background: linear-gradient(to right, var(--gold), rgba(200, 164, 94, 0.2));
}

.stepper-step--last .stepper-connector {
  display: none;
}

.stepper-label {
  margin-top: 16px;
  text-align: center;
  padding: 0 8px;
  max-width: 140px;
}

.stepper-label strong {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 6px;
}

.stepper-label span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--ease), max-height var(--ease);
}

.stepper-step:hover .stepper-label span {
  opacity: 1;
  max-height: 80px;
}

@media (max-width: 991.98px) {
  .stepper-bubble {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 1.1rem;
  }

  .stepper-connector {
    top: 29px;
    left: calc(50% + 29px);
    right: calc(-50% + 29px);
  }

  .stepper-label strong {
    font-size: var(--fs-sm);
  }
}

@media (max-width: 767.98px) {
  .stepper-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 36px;
    margin-bottom: 0;
    border-left: 2px solid var(--gray-200);
  }

  .stepper-row--alt {

    margin-top: 0;
  }

  .stepper-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    flex: none;
    width: 100%;
  }

  .stepper-bubble {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1rem;
    margin-left: -37px;
    flex-shrink: 0;
  }

  .stepper-connector {
    display: none;
  }

  .stepper-label {
    text-align: left;
    padding: 0;
    max-width: none;
    margin-top: 10px;
  }

  .stepper-label span {
    opacity: 1;
    max-height: none;
  }
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 164, 94, 0.08), transparent 70%);
}

.cta-band h2 {
  font-size: var(--fs-xl);
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-md);
  margin-bottom: 36px;
}

.blog-grid {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  height: 100%;
  transition: box-shadow var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: var(--fs-xs);
}

.blog-thumb i {
  font-size: 2rem;
  opacity: 0.3;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-tag {
  background: rgba(200, 164, 94, 0.12);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.blog-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
  line-height: 1.4;
}

.blog-card p {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.6;
}

.contact {
  background: var(--off-white);
}

.contact-grid {
  --bs-gutter-x: 3.75rem;
}

.contact-info h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 18px;
}

.contact-info>p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.8;
}

.c-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: var(--fs-base);
}

.c-item-text strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--primary);
  margin-bottom: 2px;
}

.c-item-text span,
.c-item-text a {
  font-size: var(--fs-base);
  color: var(--gray-600);
}

.c-item-text a:hover {
  color: var(--gold);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: var(--fs-lg);
  margin-bottom: 24px;
  color: var(--primary);
}

.form-card .form-label {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 5px;
}

.form-card .form-control,
.form-card .form-select {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--white);
}

.form-card .form-select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238896a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px 14px;
  appearance: none;
  -webkit-appearance: none;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form-card textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  padding: 14px;
  background: var(--primary);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-base);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease), box-shadow var(--ease);
}

.form-submit:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 25px rgba(15, 42, 74, 0.3);
}

.footer {
  background: var(--primary-darker);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 0;
}

.footer-grid {
  --bs-gutter-x: 2.75rem;
  --bs-gutter-y: 2.75rem;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer h4 {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

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

.footer ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.45);
  word-break: break-all;
}

.footer ul li a:hover {
  color: var(--gold-light);
}

.footer ul li a i {
  flex-shrink: 0;
  width: 14px;
  text-align: center;
  font-size: var(--fs-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-base);
  transition: background var(--ease), color var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-contact-list li {
  margin-bottom: 14px;
}

.footer-contact-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.footer-contact-list a,
.footer-contact-list span:not(.footer-contact-label) {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  word-break: break-word;
}

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

.footer-bottom {
  padding: 22px 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.25);
}

.footer-sep {
  margin-left: 5px;
  margin-right: 5px;
  opacity: 0.5;
}

.footer-credit a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logo .logo-hex {
  width: 48px;
  height: 48px;
}

.footer-logo .logo-hex-title {
  font-size: 11px;
}

.footer-logo .logo-hex-sub {
  font-size: 6px;
}

.footer-logo .logo-text {
  color: #fff;
  font-size: var(--fs-md);
}

.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  color: #fff;
  font-size: var(--fs-xl);
}

.wa-btn {
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-btn:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
  transform: scale(1.1);
}

.section--alt {
  background: var(--off-white);
}

.section--flush-top {
  padding-top: 0;
}

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

.section-label--left {
  justify-content: flex-start;
}

.section-label--left::before,
.contact-info .section-label::before {
  display: none;
}

.footer-logo .logo-text span {
  color: var(--gold-light);
  font-style: italic;
}

.step-overview-grid {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.step-mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.step-mini-card:hover {
  box-shadow: var(--shadow-sm);
}

.step-mini-card--featured {
  border-color: var(--gold);
}

.step-mini-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.step-mini-icon--gold {
  background: var(--primary);
  color: var(--gold-light);
}

.step-mini-label strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.3;
}

.step-mini-label span {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

@media (max-width: 575.98px) {
  .step-overview-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

.about-content-p {
  color: var(--gray-600);
  font-size: var(--fs-md);
  line-height: 1.85;
  margin-bottom: 14px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}

.info-pill:hover {
  border-color: var(--gold);
  background: var(--white);
}

.info-pill i {
  color: var(--gold);
  font-size: var(--fs-md);
  flex-shrink: 0;
}

.info-pill span {
  font-weight: 600;
  color: var(--primary);
  font-size: var(--fs-sm);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: var(--fs-2xl);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin: 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav a:hover {
  color: var(--gold-light);
}

.breadcrumb-nav .bc-sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-nav .bc-current {
  color: var(--gold-light);
}

@media (max-width: 767.98px) {
  .page-hero {
    padding: 60px 0;
  }
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.mv-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mv-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.mv-card-icon--primary {
  background: var(--primary);
  color: var(--gold-light);
}

.mv-card-icon--gold {
  background: rgba(200, 164, 94, 0.12);
  color: var(--gold);
}

.mv-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 14px;
  color: var(--primary);
}

.mv-card p {
  color: var(--gray-600);
  font-size: var(--fs-base);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 767.98px) {
  .mv-card {
    padding: 28px 24px;
  }
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: background var(--ease), color var(--ease);
}

.value-card:hover .value-card-icon {
  background: var(--primary);
  color: var(--gold-light);
}

.value-card h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

.proc-detail-timeline {
  position: relative;
  padding-left: 84px;
}

.proc-detail-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
  border-radius: 2px;
}

.proc-detail-timeline--no-line::before {
  display: none;
}

.proc-detail-step {
  position: relative;
  margin-bottom: 36px;
}

.proc-detail-step:last-child {
  margin-bottom: 0;
}

.proc-detail-bubble {
  position: absolute;
  left: -58px;
  top: 16px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(15, 42, 74, 0.2);
  border: 3px solid #fff;
  z-index: 2;
}

.proc-detail-step:hover .proc-detail-bubble {
  background: var(--gold);
  color: #fff;
}

.proc-detail-num {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: var(--fs-xs);
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.proc-detail-step:hover .proc-detail-num {
  background: var(--primary);
}

.proc-detail-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--gray-100);
}

.proc-detail-body:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.proc-detail-body h3 {
  font-size: var(--fs-md);
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.proc-detail-body p {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 767.98px) {
  .proc-detail-timeline {
    padding-left: 60px;
  }

  .proc-detail-timeline::before {
    left: 20px;
  }

  .proc-detail-bubble {
    left: -46px;
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .proc-detail-body {
    padding: 20px;
  }
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  font-size: var(--fs-base);
  gap: 12px;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--ease);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question i {
  color: var(--gold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
  transition: transform var(--ease);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
  color: var(--gray-600);
  font-size: var(--fs-base);
  line-height: 1.85;
}

.faq-item.open .faq-answer {
  display: block;
}

.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  border: 2px dashed var(--gray-200);
  overflow: hidden;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.map-placeholder p {
  font-size: var(--fs-base);
  margin: 0;
}

.srv-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.srv-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.srv-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.srv-detail-card .srv-icon {
  transition: background var(--ease), color var(--ease);
}

.srv-detail-card .srv-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.srv-detail-card:hover .srv-icon {
  background: var(--primary);
  color: var(--gold-light);
}

.srv-detail-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 14px;
  color: var(--primary);
}

.srv-detail-card>p {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.srv-detail-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.srv-detail-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--gray-600);
  padding: 5px 0;
}

.srv-detail-card ul li i {
  color: var(--gold);
  font-size: var(--fs-xs);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .srv-detail-card {
    padding: 28px 24px;
  }
}


@media (max-width: 991.98px) {
  .why-item:nth-child(3)::after {
    display: none;
  }

  .zz-steps {
    max-width: 640px;
  }

  .zz-num {
    font-size: var(--fs-2xl);
    min-width: 44px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: auto;
  }

  .cta-band {
    padding: 60px 0;
  }

  .hero-container {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .about-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 2.25rem;
  }

  .why-item:not(:last-child)::after {
    display: none;
  }

  .contact-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2.5rem;
  }

  .blog-grid {
    --bs-gutter-x: 1.5rem;
  }

  .footer-grid {
    --bs-gutter-x: 1.5rem;
  }

  .form-card {
    padding: 24px;
  }

  .zz-steps::before {
    left: 32px;
    transform: none;
  }

  .zz-step,
  .zz-left,
  .zz-right {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .zz-left .zz-content,
  .zz-right .zz-content {
    flex-direction: row;
    text-align: left;
  }

  .zz-left .zz-icon {
    order: 0;
  }

  .zz-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1.1rem;
  }

  .zz-num {
    font-size: var(--fs-xl);
    min-width: 36px;
  }

  .section {
    padding: 60px 0;
  }

  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: clamp(1.625rem, 7vw, 2rem);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .zz-body h3 {
    font-size: var(--fs-base);
  }

  .zz-body p {
    font-size: var(--fs-sm);
  }
}

@media (max-width: 480px) {
  .why-grid>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.blog-section-header {
  margin-bottom: 32px;
}

.blog-card--h {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.blog-card--h .blog-thumb {
  width: 280px;
  min-width: 280px;
  aspect-ratio: unset;
  border-radius: 0;
  flex-shrink: 0;
}

.blog-card--h .blog-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
}

.blog-card--h .blog-body p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .blog-card--h {
    flex-direction: column;
  }

  .blog-card--h .blog-thumb {
    width: 100%;
    min-width: unset;
    aspect-ratio: 16/9;
  }
}

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.blog-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 52px;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
}

.blog-featured-thumb {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.blog-featured-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.blog-featured-thumb i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}

.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 3;
}

.blog-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body .blog-meta {
  margin-bottom: 14px;
}

.blog-featured-body h2 {
  font-size: var(--fs-xl);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-featured-body p {
  color: var(--gray-600);
  font-size: var(--fs-base);
  line-height: 1.75;
  margin-bottom: 28px;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
  transition: gap var(--ease), color var(--ease);
}

.blog-read-link:hover {
  gap: 14px;
  color: var(--gold-hover);
}

@media (max-width: 767.98px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-thumb {
    min-height: 200px;
  }

  .blog-featured-body {
    padding: 28px 24px;
  }
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--gray-400);
}

.blog-empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
  display: block;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.blog-page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Sans 3", sans-serif;
}

.blog-page-btn:hover,
.blog-page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.blog-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.blog-detail {
  padding: 80px 0;
}

.blog-detail-container {
  max-width: 820px;
  margin: 0 auto;
}

.blog-detail-header {
  margin-bottom: 32px;
}


.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--gray-400);
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-tag {
  background: rgba(200, 164, 94, 0.12);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--fs-xs);
}

.blog-detail-title {
  font-size: var(--fs-3xl);
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-detail-cover {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  margin-bottom: 48px;
  overflow: hidden;
}

.blog-detail-cover i {
  font-size: 3rem;
  opacity: 0.3;
}

.blog-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-body {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--text);
}

.blog-detail-body h2 {
  font-size: var(--fs-xl);
  margin-top: 48px;
  margin-bottom: 18px;
}

.blog-detail-body h3 {
  font-size: var(--fs-lg);
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-detail-body p {
  margin-bottom: 20px;
  color: var(--gray-600);
}

.blog-detail-body ul,
.blog-detail-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--gray-600);
}

.blog-detail-body li {
  margin-bottom: 8px;
}

.blog-detail-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--primary);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.blog-detail-body strong {
  color: var(--primary);
  font-weight: 700;
}

.blog-detail-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 48px 0 40px;
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-detail-share span {
  font-weight: 700;
  color: var(--primary);
  font-size: var(--fs-base);
}

.blog-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--ease);
}

.blog-share-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.blog-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.blog-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  flex: 1;
  transition: box-shadow var(--ease);
  max-width: 48%;
}

.blog-nav-link:hover {
  box-shadow: var(--shadow-md);
}

.blog-nav-link--next {
  text-align: right;
  flex-direction: row-reverse;
  margin-left: auto;
}

.blog-nav-label {
  font-size: var(--fs-xs);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.blog-nav-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.blog-nav-link i {
  color: var(--gold);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .blog-detail {
    padding: 48px 0;
  }

  .blog-detail-title {
    font-size: var(--fs-2xl);
  }

  .blog-detail-body {
    font-size: var(--fs-base);
  }

  .blog-detail-nav {
    flex-direction: column;
  }

  .blog-nav-link {
    max-width: 100%;
  }
}

.alan-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 24px rgba(12, 35, 64, .09);
  overflow: hidden;
}

.alan-card-head {
  background: var(--primary);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.alan-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alan-icon-box i {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.alan-num {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 3px;
}

.alan-title {
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.alan-body {
  padding: 28px 36px 32px;
}

.alan-desc {
  color: var(--gray-600);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: 16px;
}

.alan-desc:last-of-type {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.alan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.alan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--gray-700);
  font-size: var(--fs-base);
}

.alan-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .alan-list {
    grid-template-columns: 1fr;
  }

  .alan-card-head {
    padding: 20px 24px;
  }

  .alan-body {
    padding: 20px 24px 24px;
  }

  .footer-bottom {
    font-size: var(--fs-xs);
    line-height: 1.8;
  }

  .footer-sep {
    display: none;
  }

  .footer-credit {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .wa-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: var(--fs-lg);
  }
}

.contact-channel-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  transition: box-shadow var(--ease);
}

.contact-channel-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-channel-icon--primary {
  background: var(--primary);
  color: var(--gold-light);
}

.contact-channel-icon--whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-channel-card h4 {
  color: var(--primary);
}

.contact-channel-card p {
  margin: 0;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fs-sm);
}

.contact-social-btn:hover {
  color: #fff;
  opacity: 0.85;
}

.srv-intro-visual {
  background: linear-gradient(135deg, var(--primary-darker), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}

.srv-intro-visual i {
  font-size: 4rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 24px;
}

.srv-intro-visual h2 {
  color: #fff;
  font-size: var(--fs-xl);
  margin-bottom: 12px;
}

.srv-intro-visual p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-base);
  line-height: 1.7;
  margin: 0;
}

.checkup-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.checkup-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: var(--fs-base);
}

.checkup-features li i {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .checkup-features {
    grid-template-columns: 1fr;
  }

  .srv-intro-visual {
    padding: 32px 24px;
  }
}

.srv-process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  height: 100%;
}

.srv-process-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-light);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
}

.srv-process-step h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.srv-process-step p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}