﻿.header-nav.fixed {
  z-index: 9999;
}

body {
  color: #334155;
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* Color Variables Customization */
.lp-sdn-text-primary-custom {
  color: #2bb671; /* Teal Ä‘áº­m */
}
.lp-sdn-bg-primary-custom {
  background-color: #2bb671;
  color: #ffffff;
}
.lp-sdn-bg-dark-custom {
  background-color: #0f172a; /* Slate 900 */
  color: #94a3b8;
}
.lp-sdn-btn-cta {
  background-color: #f59e0b; /* Orange/Amber */
  color: #0f172a !important;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}
.lp-sdn-btn-cta:hover {
  background-color: #d97706;
  transform: scale(1.03);
}
.lp-sdn-btn-zalo {
  background-color: #2563eb; /* Blue */
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.lp-sdn-btn-zalo:hover {
  background-color: #1d4ed8;
  color: #ffffff;
  transform: scale(1.03);
}

/* Custom Animations & Keyframes */
@keyframes phone-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.lp-sdn-animate-bounce {
  animation: phone-bounce 1.5s infinite;
  display: inline-block;
}
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}
.lp-sdn-btn-pulse {
  animation: cta-pulse 2.5s infinite;
}

/* Modernized Hero Features (Glassmorphism Badges) */
.lp-sdn-hero-features-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-sdn-hero-feature-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.3s ease;
}
.lp-sdn-hero-feature-badge:hover {
  background: rgba(43, 182, 113, 0.15);
  border-color: rgba(43, 182, 113, 0.4);
  transform: translateY(-2px);
}
.lp-sdn-hero-feature-badge i {
  color: #50d494;
  font-size: 14px;
}

/* Hero CTA Buttons */
.lp-sdn-hero-cta-group {
  margin-bottom: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}
.lp-sdn-hero-cta-group .btn {
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex: 1 1 auto;
}
@media (max-width: 767px) {
  .lp-sdn-hero-cta-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lp-sdn-hero-cta-group .btn {
    flex: 1 1 100%;
  }
}

/* Lead Form Upgrades */
.lp-sdn-form-group-icon {
  position: relative;
}
.lp-sdn-form-group-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}
.lp-sdn-form-control-with-icon {
  padding-left: 42px !important;
}
.lp-sdn-form-trust-subtext {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Hero Image & Floating Badges */
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.lp-sdn-hero-image-wrapper {
  position: relative;
  max-width: 100%;
  margin-top: 20px;
  animation: hero-float 6s ease-in-out infinite;
}
.lp-sdn-hero-tech-img {
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(43, 182, 113, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}
.lp-sdn-hero-tech-img:hover {
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(43, 182, 113, 0.4);
}
.lp-sdn-hero-floating-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: #ffffff;
  color: #1e293b;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.lp-sdn-hero-floating-badge i {
  font-size: 20px;
  color: #2bb671;
  background: #f0fdf4;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-sdn-hero-floating-badge div {
  display: flex;
  flex-direction: column;
}
.lp-sdn-hero-floating-badge strong {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}
.lp-sdn-hero-floating-badge span {
  font-size: 11px;
  color: #64748b;
}
.lp-sdn-hero-floating-badge-2 {
  position: absolute;
  bottom: 30px;
  right: -15px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.lp-sdn-hero-floating-badge-2 i {
  font-size: 20px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-sdn-hero-floating-badge-2 div {
  display: flex;
  flex-direction: column;
}
.lp-sdn-hero-floating-badge-2 strong {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}
.lp-sdn-hero-floating-badge-2 span {
  font-size: 11px;
  color: #cbd5e1;
}
@media (max-width: 991px) {
  .lp-sdn-hero-floating-badge {
    left: 10px;
  }
  .lp-sdn-hero-floating-badge-2 {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .lp-sdn-hero-image-wrapper {
    margin-top: 30px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero Section */
.lp-sdn-hero-section {
  background: radial-gradient(
      circle at 85% 30%,
      rgba(43, 182, 113, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(43, 182, 113, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #092618 0%, #05100a 60%, #020403 100%);
  color: #ffffff;
  padding: 70px 0 80px 0;
  /* overflow: hidden; */
}
.lp-sdn-hero-badge {
  background: rgba(43, 182, 113, 0.15);
  color: #50d494;
  border: 1px solid rgba(43, 182, 113, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 15px;
  text-transform: uppercase;
}
.lp-sdn-hero-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.lp-sdn-hero-title span {
  color: #fbbf24;
}
.lp-sdn-hero-desc {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}
.lp-sdn-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.lp-sdn-hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}
.lp-sdn-hero-feature-item i {
  color: #10b981;
  font-size: 16px;
}

/* Forms */
.lp-sdn-hero-form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
  color: #1e293b;
}
.lp-sdn-hero-form-box h3 {
  font-weight: 800;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 5px;
  color: #0f172a;
}
.lp-sdn-hero-form-box p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 20px;
}
.lp-sdn-form-control-custom {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  box-shadow: none;
  font-size: 13px;
}
.lp-sdn-form-control-custom:focus {
  border-color: #2bb671;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.15);
}

/* Modern Floating Trust Strip */
.lp-sdn-trust-strip-section {
  position: relative;
  z-index: 20;
  background: transparent;
}
.lp-sdn-trust-card-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08),
    0 5px 15px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-top: -35px;
}
.lp-sdn-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.lp-sdn-trust-item-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 15px;
  border-right: 1px solid #f1f5f9;
}
.lp-sdn-trust-item-modern:last-child {
  border-right: none;
}
.lp-sdn-trust-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(43, 182, 113, 0.1);
  color: #2bb671;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.lp-sdn-trust-item-modern:hover .lp-sdn-trust-icon-box {
  background: #2bb671;
  color: #ffffff;
  transform: scale(1.08);
}
.lp-sdn-trust-content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-sdn-trust-number-modern {
  font-size: 24px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.1;
}
.lp-sdn-trust-label-modern {
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 991px) {
  .lp-sdn-trust-item-modern {
    gap: 10px;
    border-right: none;
  }
  .lp-sdn-trust-number-modern {
    font-size: 20px;
  }
  .lp-sdn-trust-icon-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .lp-sdn-trust-card-wrapper {
    margin-top: -20px;
    padding: 15px 10px;
  }
  .lp-sdn-trust-item-modern {
    border-bottom: 1px solid #f1f5f9;
    justify-content: flex-start;
    padding: 12px 15px;
  }
  .lp-sdn-trust-item-modern:nth-child(even) {
    border-bottom: 1px solid #f1f5f9;
  }
  .lp-sdn-trust-item-modern:nth-child(3),
  .lp-sdn-trust-item-modern:nth-child(4) {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .lp-sdn-trust-item-modern {
    width: 100%;
    border-bottom: 1px solid #f1f5f9 !important;
  }
  .lp-sdn-trust-item-modern:last-child {
    border-bottom: none !important;
  }
}

/* Sections Common */
.lp-sdn-section-padding {
  padding: 40px 0;
}
.lp-sdn-bg-light {
  background-color: #f1f5f9 !important; /* Cool Slate gray for maximum contrast with white/dark cards */
}
.lp-sdn-section-header {
  text-align: center;
  margin-bottom: 50px;
  max-w: 650px;
  margin-left: auto;
  margin-right: auto;
}
.lp-sdn-section-header span {
  color: #2bb671;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.lp-sdn-section-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-top: 10px;
  margin-bottom: 15px;
}
.lp-sdn-section-header p {
  color: #64748b;
  font-size: 15px;
}

/* Split Screen & Interactive Accordion Pain Points */
.lp-sdn-pain-split-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.lp-sdn-pain-info-col {
  flex: 1 1 42%;
  position: sticky;
  top: 40px;
}
.lp-sdn-pain-interactive-col {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.lp-sdn-pain-interactive-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px -2px rgba(15, 23, 42, 0.03),
    0 0 0 1px rgba(15, 23, 42, 0.02);
}
.lp-sdn-pain-interactive-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  background: transparent;
  transition: all 0.3s ease;
}
.lp-sdn-pain-interactive-item.active::before {
  width: 4px;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-danger::before {
  background: #ef4444;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-warning::before {
  background: #2563eb;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-info::before {
  background: #16a34a;
}

.lp-sdn-pain-interactive-item.active.lp-sdn-type-danger {
  box-shadow: 0 15px 30px -10px rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  background: #fffcfc;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-warning {
  box-shadow: 0 15px 30px -10px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  background: #fcfdff;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-info {
  box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.3);
  background: #fcfdfd;
}
.lp-sdn-pain-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}
.lp-sdn-pain-item-title-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}
.lp-sdn-pain-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.lp-sdn-pain-item-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  transition: all 0.3s ease;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-danger
  .lp-sdn-pain-item-title {
  color: #ef4444;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-warning
  .lp-sdn-pain-item-title {
  color: #2563eb;
}
.lp-sdn-pain-interactive-item.active.lp-sdn-type-info .lp-sdn-pain-item-title {
  color: #16a34a;
}
.lp-sdn-pain-chevron {
  color: #94a3b8;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.lp-sdn-pain-interactive-item.active .lp-sdn-pain-chevron {
  transform: rotate(180deg);
  color: #64748b;
}
.lp-sdn-pain-item-body {
  display: none;
  overflow: hidden;
  padding-left: 59px;
  padding-top: 12px;
}
.lp-sdn-pain-interactive-item.active .lp-sdn-pain-item-body {
  display: block;
}
.lp-sdn-pain-item-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
}
.lp-sdn-pain-item-action {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.lp-sdn-type-danger .lp-sdn-pain-item-action {
  color: #ea580c;
}
.lp-sdn-type-warning .lp-sdn-pain-item-action {
  color: #2563eb;
}
.lp-sdn-type-info .lp-sdn-pain-item-action {
  color: #16a34a;
}
.lp-sdn-pain-item-action i {
  transition: transform 0.3s ease;
}
.lp-sdn-pain-interactive-item:hover .lp-sdn-pain-item-action i {
  transform: translateX(4px);
}
.lp-sdn-pain-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.lp-sdn-tag-danger {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fee2e2;
}
.lp-sdn-tag-warning {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
}
.lp-sdn-tag-info {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #dcfce7;
}
@keyframes icon-wobble {
  0%,
  100% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(-12deg) scale(1.1);
  }
  30% {
    transform: rotate(10deg) scale(1.1);
  }
  45% {
    transform: rotate(-10deg) scale(1.1);
  }
  60% {
    transform: rotate(6deg) scale(1.1);
  }
  75% {
    transform: rotate(-4deg) scale(1.1);
  }
}
.lp-sdn-pain-interactive-item:hover .lp-sdn-pain-item-icon i {
  animation: icon-wobble 0.75s ease-in-out;
}
@media (max-width: 991px) {
  .lp-sdn-pain-split-container {
    flex-direction: column;
    gap: 30px;
  }
  .lp-sdn-pain-info-col {
    position: relative;
    top: 0;
    text-align: center;
    width: 100%;
  }
  .lp-sdn-pain-interactive-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .lp-sdn-pain-interactive-item {
    padding: 16px 20px;
  }
  .lp-sdn-pain-item-body {
    padding-left: 0;
  }
}

/* Segmented Pill Tab Navigation */
.lp-sdn-nav-tabs-custom-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
  width: 100%;
}
.lp-sdn-nav-tabs-custom {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  gap: 4px;
  border-bottom: none !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}
.lp-sdn-nav-tabs-custom > li {
  float: none !important;
  margin: 0 !important;
}
.lp-sdn-nav-tabs-custom > li > a {
  border: none !important;
  color: #64748b !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px !important;
  background: transparent !important;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 0 !important;
}
.lp-sdn-nav-tabs-custom > li.active > a {
  color: #ffffff !important;
  background: #2bb671 !important;
  box-shadow: 0 4px 12px rgba(43, 182, 113, 0.3);
}
.lp-sdn-nav-tabs-custom > li > a::after {
  display: none !important;
}
.lp-sdn-nav-tabs-custom > li > a:hover {
  color: #0f172a !important;
  background: rgba(255, 255, 255, 0.5) !important;
}
.lp-sdn-nav-tabs-custom > li.active > a:hover {
  color: #ffffff !important;
  background: #2bb671 !important;
}

/* Modernized Service List Cards */
.lp-sdn-service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 25px;
}
.lp-sdn-service-list-item-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}
.lp-sdn-service-list-item-card:hover {
  border-color: rgba(43, 182, 113, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 182, 113, 0.06);
}
.lp-sdn-service-list-item-card i {
  color: #2bb671;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.lp-sdn-service-list-item-card span {
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}

/* Price Table */
.lp-sdn-price-table-box {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05),
    0 5px 15px -5px rgba(0, 0, 0, 0.02);
}
.lp-sdn-table-custom {
  margin-bottom: 0;
}
.lp-sdn-table-custom th {
  background: #0f172a; /* Slate 900 for dark premium feel */
  color: #ffffff;
  font-weight: 800;
  padding: 18px 24px !important;
  border: none !important;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lp-sdn-table-custom th:first-child {
  padding-left: 30px !important;
}
.lp-sdn-table-custom th:last-child {
  padding-right: 30px !important;
}
.lp-sdn-price-row-item {
  transition: all 0.2s ease;
}
.lp-sdn-price-row-item:hover {
  background-color: #f8fafc !important;
}
.lp-sdn-price-row-item:hover td {
  color: #0f172a !important;
}
.lp-sdn-table-custom td {
  padding: 16px 24px !important;
  vertical-align: middle !important;
  border-top: 1px solid #f1f5f9 !important;
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
}
.lp-sdn-table-custom td:first-child {
  padding-left: 30px !important;
}
.lp-sdn-table-custom td:last-child {
  padding-right: 30px !important;
}
.lp-sdn-price-item-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.lp-sdn-price-item-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.lp-sdn-price-row-item:hover .lp-sdn-price-item-icon-box {
  transform: scale(1.1);
}
.lp-sdn-bg-warning-light {
  background: #fffbeb;
}
.lp-sdn-bg-primary-light {
  background: rgba(43, 182, 113, 0.1);
}
.lp-sdn-text-primary-custom {
  color: #2bb671 !important;
}
.lp-sdn-unit-tag {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}
.lp-sdn-price-badge-custom {
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  letter-spacing: 0.2px;
}
.lp-sdn-bg-orange-light {
  background: #fff7ed;
}
.lp-sdn-text-orange {
  color: #ea580c;
}
.lp-sdn-bg-green-light {
  background: rgba(43, 182, 113, 0.1);
}
.lp-sdn-text-green-custom {
  color: #2bb671;
}
.lp-sdn-warranty-tag-custom {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lp-sdn-bg-success-light {
  background: #f0fdf4;
  color: #16a34a;
}
.lp-sdn-bg-slate-light {
  background: #f8fafc;
  color: #94a3b8;
}

/* Step process */
.lp-sdn-step-card-wrapper {
  position: relative;
  margin-bottom: 30px;
}
.lp-sdn-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  z-index: 1;
}
.lp-sdn-step-card:hover {
  transform: translateY(-6px);
  border-color: #2bb671;
  box-shadow: 0 20px 25px -5px rgba(43, 182, 113, 0.08),
    0 10px 10px -5px rgba(43, 182, 113, 0.03);
}
.lp-sdn-step-number-bg {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 72px;
  font-weight: 900;
  color: #2bb671;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: all 0.3s ease;
}
.lp-sdn-step-card:hover .lp-sdn-step-number-bg {
  opacity: 0.12;
  transform: scale(1.1) translateY(5px);
}
.lp-sdn-step-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e6f7ed;
  color: #2bb671;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: relative;
  transition: all 0.3s ease;
}
.lp-sdn-step-card:hover .lp-sdn-step-icon-box {
  background: #2bb671;
  color: #ffffff;
  transform: rotate(360deg);
}
.lp-sdn-step-icon-box i {
  font-size: 26px;
}
.lp-sdn-step-badge-num {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  background: #2bb671;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lp-sdn-step-card:hover .lp-sdn-step-badge-num {
  background: #0f172a;
  transform: scale(1.1);
}
.lp-sdn-step-card h4 {
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 12px;
}
.lp-sdn-step-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
/* Connector Chevron between Steps (Desktop only) */
@media (min-width: 992px) {
  .lp-sdn-step-card-wrapper:not(:last-child)::after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    font-size: 16px;
    color: #cbd5e1;
    z-index: 10;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .lp-sdn-step-card-wrapper:hover::after {
    color: #2bb671;
    transform: translateY(-50%) translateX(4px);
  }
}

/* Lightbox Modal for Feedback Screenshots */
.lp-sdn-feedback-lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}
.lp-sdn-lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: zoom-in-feedback 0.3s ease;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
@keyframes zoom-in-feedback {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lp-sdn-lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f5f9;
  font-size: 40px;
  font-weight: 300;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 100000;
}
.lp-sdn-lightbox-close:hover {
  color: #2bb671;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.lp-sdn-feedback-zoom-link {
  display: block;
  text-decoration: none !important;
  outline: none !important;
  cursor: zoom-in;
}
/* Feedback Screenshot Cards */
.lp-sdn-review-carousel-wrapper {
  position: relative;
  padding: 0 10px;
}
.lp-sdn-feedback-img-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  margin: 15px 5px;
  position: relative;
  overflow: hidden;
}
.lp-sdn-feedback-img-card:hover {
  transform: translateY(-6px);
  border-color: #2bb671;
  box-shadow: 0 20px 35px -10px rgba(11, 27, 19, 0.08);
}
.lp-sdn-feedback-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: block;
}
.lp-sdn-feedback-img-card img {
  width: 100% !important;
  height: auto !important;
  max-height: 420px;
  object-fit: contain;
  transition: all 0.5s ease;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
}
.lp-sdn-feedback-img-card:hover .lp-sdn-feedback-img-wrapper img {
  transform: scale(1.05) !important;
}
.lp-sdn-feedback-info {
  padding: 12px 5px 4px 5px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lp-sdn-feedback-info i {
  color: #2bb671;
}
/* Customize Owl Carousel Dots */
.lp-sdn-review-carousel-wrapper .owl-theme .owl-dots {
  margin-top: 25px !important;
}
.lp-sdn-review-carousel-wrapper .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 6px;
  background: #cbd5e1;
  transition: all 0.3s ease;
}
.lp-sdn-review-carousel-wrapper .owl-theme .owl-dots .owl-dot.active span,
.lp-sdn-review-carousel-wrapper .owl-theme .owl-dots .owl-dot:hover span {
  background: #2bb671;
  width: 24px;
  border-radius: 5px;
}

/* Service Area - GPS Radar Beacons & Badges */
.lp-sdn-card-custom {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.03);
}
.lp-sdn-card-custom:hover {
  transform: translateY(-6px);
  border-color: #2bb671;
  box-shadow: 0 20px 30px -10px rgba(43, 182, 113, 0.1);
}
.lp-sdn-radar-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-sdn-radar-core {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6f7ed;
  color: #2bb671;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 22px;
}
.lp-sdn-radar-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(43, 182, 113, 0.35);
  z-index: 1;
  animation: pulse-radar 2s infinite ease-out;
}
.lp-sdn-radar-pulse-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(43, 182, 113, 0.15);
  z-index: 1;
  animation: pulse-radar 2s infinite ease-out;
  animation-delay: 0.8s;
}
@keyframes pulse-radar {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.lp-sdn-card-custom:hover .lp-sdn-radar-core {
  background: #2bb671;
  color: #ffffff;
  transform: scale(1.05);
}
.lp-sdn-area-hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
  text-align: left;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.lp-sdn-hub-item {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.lp-sdn-hub-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2bb671;
  display: inline-block;
  box-shadow: 0 0 8px rgba(43, 182, 113, 0.6);
  flex-shrink: 0;
}
.lp-sdn-card-custom:hover .lp-sdn-hub-item {
  color: #0f172a;
}
@media (min-width: 992px) {
  .lp-sdn-row-flex {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .lp-sdn-row-flex > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
  }
  .lp-sdn-row-flex .lp-sdn-card-custom {
    flex: 1 0 auto !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
}

/* FAQ Accordion - Modern Card Style */
.lp-sdn-faq-panel {
  border: 1px solid #e2e8f0;
  border-radius: 16px !important;
  background: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid transparent;
}
.lp-sdn-faq-panel:hover {
  transform: translateY(-2px);
  border-color: #2bb671;
  box-shadow: 0 10px 20px -5px rgba(43, 182, 113, 0.08) !important;
}
.lp-sdn-faq-panel.lp-sdn-is-open {
  border-left-color: #2bb671 !important;
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 12px 24px -10px rgba(43, 182, 113, 0.12) !important;
}
.lp-sdn-faq-panel-heading {
  background: transparent !important;
  padding: 0 !important;
}
.lp-sdn-faq-title-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none !important;
  transition: all 0.3s ease;
}
.lp-sdn-faq-title-btn.collapsed {
  color: #1e293b;
}
.lp-sdn-faq-title-btn .lp-sdn-faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}
.lp-sdn-faq-title-btn:not(.collapsed) {
  color: #2bb671;
}
.lp-sdn-faq-title-btn:not(.collapsed) .lp-sdn-faq-icon-box {
  background: #2bb671;
  color: #ffffff;
  transform: rotate(180deg);
}
.lp-sdn-faq-panel-body {
  padding: 0 24px 24px 24px !important;
  border-top: none !important;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  background: #ffffff;
}

/* CTA Footer Section */
/* CTA Footer Section - Bright, Friendly & High-Contrast */
.lp-sdn-cta-footer-section {
  background: linear-gradient(135deg, #2bb671 0%, #22c55e 50%, #16a34a 100%);
  color: #ffffff;
  padding: 60px 0;
  border-radius: 24px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(43, 182, 113, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-sdn-cta-footer-section::before {
  content: "\f0ad";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-size: 240px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
}
.lp-sdn-glow-circle-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.lp-sdn-glow-circle-2 {
  position: absolute;
  bottom: -100px;
  right: -30px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.lp-sdn-btn-cta-pulse {
  background: #f59e0b !important;
  color: #0f172a !important;
  border: 2px solid #f59e0b !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
  animation: cta-pulse-action 1.8s infinite cubic-bezier(0.66, 0, 0, 1) !important;
  transition: all 0.3s ease !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
}
.lp-sdn-btn-cta-pulse:hover {
  background: #d97706 !important;
  border-color: #d97706 !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6) !important;
}
@keyframes cta-pulse-action {
  0% {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4),
      0 0 0 0px rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4),
      0 0 0 15px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4),
      0 0 0 0px rgba(245, 158, 11, 0);
  }
}
.lp-sdn-btn-zalo-outline {
  background: #ffffff !important;
  color: #0068ff !important;
  border: 2px solid #ffffff !important;
  transition: all 0.3s ease !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}
.lp-sdn-btn-zalo-outline:hover {
  background: #f8fafc !important;
  border-color: #f8fafc !important;
  color: #0052cc !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px);
}

/* Sticky Mobile Navigation */
.lp-sdn-sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  display: none;
  border-top: 1px solid #f1f5f9;
}
.lp-sdn-sticky-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 15px;
}
.lp-sdn-sticky-btn-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .lp-sdn-sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 68px; /* Offset for sticky bar */
  }
  .lp-sdn-hero-section {
    padding: 40px 0 50px 0;
    text-align: center;
  }
  .lp-sdn-hero-title {
    font-size: 28px;
  }
  .lp-sdn-hero-features {
    justify-content: center;
  }
  .lp-sdn-hero-form-box {
    margin-top: 40px;
  }
  .lp-sdn-section-padding {
    padding: 50px 0;
  }
  .lp-sdn-section-header h2 {
    font-size: 24px;
  }
}

/* Mobile Custom Optimization */
@media (max-width: 767px) {
  .lp-sdn-nav-tabs-custom {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border-bottom: none;
  }
  .lp-sdn-nav-tabs-custom > li > a {
    border-radius: 8px !important;
    background-color: #f1f5f9 !important;
    text-align: center;
    margin-bottom: 5px;
  }
  .lp-sdn-nav-tabs-custom > li.active > a {
    background-color: #2bb671 !important;
    color: #ffffff !important;
  }
  .lp-sdn-nav-tabs-custom > li.active > a::after {
    display: none;
  }
  .table-responsive {
    border: none !important;
  }
  .lp-sdn-trust-number {
    font-size: 22px;
  }
  .lp-sdn-trust-label {
    font-size: 10px;
  }
  .lp-sdn-section-padding {
    padding: 40px 0;
  }
  .lp-sdn-hero-form-box {
    padding: 20px;
  }
}

/* Benefit Cards Styles */
.lp-sdn-benefit-row-flex {
  display: flex;
  flex-wrap: wrap;
}
.lp-sdn-benefit-card-wrapper {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.lp-sdn-benefit-card-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-sdn-benefit-card-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #2bb671;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}
.lp-sdn-benefit-card-inner:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 182, 113, 0.3);
  box-shadow: 0 20px 30px -10px rgba(43, 182, 113, 0.08);
}
.lp-sdn-benefit-card-inner:hover::after {
  transform: scaleX(1);
}
.lp-sdn-benefit-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(43, 182, 113, 0.1);
  color: #2bb671;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.lp-sdn-benefit-card-inner:hover .lp-sdn-benefit-icon-box {
  background: #2bb671;
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
}
.lp-sdn-benefit-card-inner h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.lp-sdn-benefit-card-inner:hover h4 {
  color: #2bb671;
}
.lp-sdn-benefit-card-inner p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Sticky Left Quick Navigation Menu - Option 1 (Visible Short Labels) */
.lp-sdn-quick-nav-sidebar {
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 16px 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 115px;
}
.lp-sdn-quick-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-sdn-quick-nav-item {
  position: relative;
  display: block;
}
.lp-sdn-quick-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  padding: 4px 0;
  transition: all 0.2s ease;
}
.lp-sdn-quick-nav-link:focus,
.lp-sdn-quick-nav-link:active,
.lp-sdn-quick-nav-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
.lp-sdn-quick-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.lp-sdn-quick-nav-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  transition: all 0.3s ease;
}
/* Hover state */
.lp-sdn-quick-nav-link:hover .lp-sdn-quick-nav-dot {
  background: #2bb671;
  transform: scale(1.3);
}
.lp-sdn-quick-nav-link:hover .lp-sdn-quick-nav-label {
  color: #2bb671;
}
/* Active State */
.lp-sdn-quick-nav-item.active .lp-sdn-quick-nav-dot {
  background: #2bb671;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px rgba(43, 182, 113, 0.6);
}
.lp-sdn-quick-nav-item.active .lp-sdn-quick-nav-label {
  color: #2bb671;
  font-weight: 800;
}
/* Hide on mobile/tablet to avoid overlapping content */
@media (max-width: 991px) {
  .lp-sdn-quick-nav-sidebar {
    display: none !important;
  }
}

/* Section Background Design Upgrades */
#detailed-services {
  background: linear-gradient(180deg, #ffffff 0%, #e8f7ee 100%) !important;
}
#work-process {
  background: linear-gradient(135deg, #092015 0%, #05140d 100%) !important;
  color: #ffffff !important;
}
#work-process .lp-sdn-section-header h2 {
  color: #ffffff !important;
}
#work-process .lp-sdn-section-header p {
  color: #94a3b8 !important;
}
#work-process .lp-sdn-section-header span {
  color: #2bb671 !important;
}
#service-areas {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%) !important;
}

/* More Info Section Styles */
.lp-sdn-more-info-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.lp-sdn-more-info-title-line {
  height: 2px;
  width: 80px;
  background-color: #f59e0b; /* Amber line style matching design */
}
.lp-sdn-more-info-title {
  font-size: 20px;
  font-weight: 800;
  color: #2bb671;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}
.lp-sdn-more-info-container-wrapper {
  background: #ffffff;
  border: 2px dashed #2bb671; /* Green dashed border from design */
  border-radius: 20px;
  padding: 35px 35px 75px 35px;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.03);
}
.lp-sdn-more-info-content {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.8;
  max-height: 380px; /* Limits original height to show partially */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}
.lp-sdn-more-info-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lp-sdn-more-info-content.expanded {
  max-height: 9999px; /* Expands to full content */
}
.lp-sdn-more-info-content.expanded::after {
  opacity: 0;
  height: 0;
}
.lp-sdn-more-info-content h2,
.lp-sdn-more-info-content h3 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  margin-top: 25px;
  margin-bottom: 15px;
}
.lp-sdn-more-info-content h2:first-of-type,
.lp-sdn-more-info-content h3:first-of-type {
  margin-top: 0;
}
.lp-sdn-more-info-content p {
  margin-bottom: 20px;
}
.lp-sdn-more-info-toggle-btn-wrapper {
  position: absolute;
  bottom: -22px; /* Positioned button at the middle bottom border line */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.lp-sdn-btn-more-info {
  background-color: #2bb671;
  color: #ffffff !important;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(43, 182, 113, 0.3);
  transition: all 0.3s ease;
}
.lp-sdn-btn-more-info:hover {
  background-color: #209359;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(43, 182, 113, 0.4);
}
.lp-sdn-btn-more-info i {
  font-size: 15px;
}

@media (max-width: 767px) {
  .lp-sdn-more-info-container-wrapper {
    padding: 25px 20px 65px 20px;
  }
  .lp-sdn-more-info-content h2,
  .lp-sdn-more-info-content h3 {
    font-size: 20px;
  }
}
