/* ==========================================================================
   Landing Page 1 (vIDP) — Section styles
   Loads after shared.css. Scoped with the `lp1-` prefix (page-specific,
   distinct from `lp-` which is shared across every landing-page template).
   ========================================================================== */

.lp1-container {
  width: 100%;
  max-width: 1476px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp1-eyebrow {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.6px;
  color: var(--primary-color, #EE3000);
}

.lp1-eyebrow-light {
  color: #FFFFFF;
  text-align: center;
}

.lp1-section-title {
  font-family: var(--font-family-primary);
  font-size: 48px;
  font-weight: 500;
  color: #202124;
  text-align: center;
  line-height: 1.15;
}

.lp1-section-title-light {
  color: #FFFFFF;
}

.lp1-section-desc {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  color: #5F6368;
  text-align: center;
  line-height: 22.5px;
}

.lp1-section-desc-light {
  color: #FFFFFF;
}

.lp1-text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.lp1-section-head {
  max-width: 920px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Banner / Hero
   -------------------------------------------------------------------------- */
/* Wraps banner + pain-points: in Figma the grid/glow background (node
   3775:6122 / 3775:6352) spans both sections, not just the hero card, so it
   lives on this shared wrapper instead of inside .lp1-banner alone. */
.lp1-hero-area {
  position: relative;
  overflow: hidden;
}

/* Figma node 3775:6122 — soft blue radial glow + the same 3D grid pattern
   used behind the home hero (assets/images/grid3d.svg), layered the same
   way as .hero-1617-bg-wrapper in home.css: glow first, grid on top. */
.lp1-hero-area-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.lp1-hero-area-bg-glow {
  width: 100%;
  max-width: 1264px;
  margin-top: -120px;
  opacity: 0.8;
  object-fit: contain;
}

.lp1-hero-area-bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.lp1-banner,
.lp1-pain {
  position: relative;
  z-index: 1;
}

.lp1-banner {
  padding: 168px 0 60px;
}

.lp1-banner-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 32px 24px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.lp1-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.lp1-banner-visual {
  flex-shrink: 0;
  width: 552px;
  max-width: 100%;
  height: 430px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  box-shadow: 0px 12px 30px rgba(32, 33, 36, 0.12);
}

.lp1-banner-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp1-banner-heading-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp1-banner-title {
  font-family: var(--font-family-primary);
  font-size: 48px;
  font-weight: 500;
  color: #202124;
}

.lp1-banner-desc {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #5F6368;
  line-height: 29.16px;
}

.lp1-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp1-btn-gradient,
.lp1-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 9999px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.lp1-btn-gradient {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(238, 48, 0, 0.3);
}

.lp1-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(238, 48, 0, 0.45);
}

.lp1-btn-outline {
  background: #FFFFFF;
  color: #202124;
  border: 1px solid #E5E7EB;
}

.lp1-btn-outline:hover {
  background: #F6F8FC;
}

.lp1-banner-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.lp1-banner-tags li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #202124;
}

.lp1-tag-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 14px;
  background: #FEF2F2;
  color: var(--primary-color, #EE3000);
  font-size: 12px;
}

.lp1-banner-illustration {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp1-banner-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp1-banner-dots span:not(.lp1-badge-illustrative) {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #2D2D2D;
}

.lp1-badge-illustrative {
  margin-left: auto;
  display: inline-block;
  background: var(--primary-color, #EE3000);
  border: 1px solid var(--primary-color, #EE3000);
  color: #FFFFFF;
  font-family: var(--font-family-primary);
  font-size: 16px;
  line-height: 14px;
  padding: 6px 13px;
  border-radius: 99px;
  white-space: nowrap;
}

.lp1-badge-inline {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
}

.lp1-badge-btn {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(238, 48, 0, 0.3);
  padding: 10px 20px;
}

.lp1-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(238, 48, 0, 0.45);
}

.lp1-mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lp1-mini-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 21px 23px;
  box-shadow: 0px 1px 10px rgba(32, 33, 36, 0.1);
}

.lp1-mini-label {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 300;
  color: #6A7282;
  margin-bottom: 8px;
}

.lp1-mini-title {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0F;
  margin-bottom: 12px;
}

.lp1-mini-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp1-mini-progress-track {
  flex: 1;
  height: 8px;
  background: #F0F1F2;
  border-radius: 4px;
  overflow: hidden;
}

.lp1-mini-progress-fill {
  height: 100%;
  background: var(--primary-color, #EE3000);
  border-radius: 4px;
}

.lp1-mini-progress-value {
  font-family: var(--font-family-primary);
  font-size: 14px;
  color: #4C515B;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Khó khăn trải nghiệm (Pain points — end of banner)
   -------------------------------------------------------------------------- */
.lp1-pain {
  padding: 40px 0 100px;
}

.lp1-pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.lp1-pain-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp1-pain-eyebrow,
.lp1-pain-title,
.lp1-pain-desc {
  text-align: left;
}

.lp1-pain-eyebrow {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp1-pain-desc {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #5F6368;
  line-height: 22.5px;
  max-width: 420px;
}

.lp1-pain-btn {
  align-self: flex-start;
  margin-top: 8px;
}

.lp1-pain-stack {
  position: relative;
  height: 220px;
  cursor: pointer;
}

.lp1-pain-card {
  position: absolute;
  inset: 0;
  padding: 25px 41px;
  border-radius: 23px;
  box-sizing: border-box;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.9s ease;
}

.lp1-pain-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.35s ease;
}

.lp1-pain-card[data-pos="front"] {
  z-index: 3;
  transform: translate(0, 0);
  background: #FFFFFF;
  box-shadow: 0px 8px 30px rgba(32, 33, 36, 0.08);
}

.lp1-pain-card[data-pos="back1"] {
  z-index: 2;
  transform: translate(21px, 12px);
  background: #DADADA;
  box-shadow: none;
}

.lp1-pain-card[data-pos="back2"] {
  z-index: 1;
  transform: translate(42px, 24px);
  background: #C4C4C4;
  box-shadow: none;
}

.lp1-pain-card[data-pos="back1"] .lp1-pain-card-inner,
.lp1-pain-card[data-pos="back2"] .lp1-pain-card-inner {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.lp1-pain-stack:hover .lp1-pain-card[data-pos="front"] {
  box-shadow: 0px 12px 36px rgba(32, 33, 36, 0.12);
}

.lp1-pain-card-head {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp1-pain-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #FEF2F2;
  color: var(--primary-color, #EE3000);
  font-size: 20px;
}

.lp1-pain-card-head h3 {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 700;
  color: #101216;
}

.lp1-pain-card-inner > p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #5F6368;
  line-height: 29.16px;
}

/* --------------------------------------------------------------------------
   Giá trị mang lại (Values)
   -------------------------------------------------------------------------- */
.lp1-values {
  position: relative;
  padding: 100px 0;
  background: var(--dark-bg, #0B0D12);
  overflow: hidden;
}

.lp1-values-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../images/landing-1/values-bg-glow.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.lp1-values .lp1-container {
  position: relative;
  z-index: 1;
}

.lp1-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp1-value-card {
  position: relative;
  display: flex;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.15);
}

.lp1-value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -1px 1px rgba(0, 0, 0, 0.15);
}

.lp1-value-card-inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  min-height: 210px;
  padding: 8px 24px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.06);
}

.lp1-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--primary-color, #EE3000);
  font-size: 16px;
}

.lp1-value-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.lp1-value-card h3 {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 700;
  color: #101216;
  margin: 0;
}

.lp1-value-card p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  color: #5F6368;
  line-height: 29.16px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Tính năng (Features)
   -------------------------------------------------------------------------- */
.lp1-features {
  padding: 100px 0;
}

.lp1-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}

.lp1-feature-card:nth-child(4) {
  grid-column: 4;
  grid-row: 1 / span 3;
}

.lp1-feature-card:nth-child(5) {
  grid-column: span 2;
}

.lp1-feature-card:nth-child(7) {
  grid-column: span 3;
}

.lp1-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
}

.lp1-feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.lp1-feature-overlay-fade {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 80%);
}

.lp1-feature-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
}

.lp1-feature-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--primary-color, #EE3000);
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: 700;
}

.lp1-feature-head h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
}

.lp1-feature-card > p {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.lp1-feature-card:nth-child(2) > p {
  color: #6A7282;
}

/* --------------------------------------------------------------------------
   Ứng dụng (Applications)
   -------------------------------------------------------------------------- */

.lp1-applications {
  background: #FFFFFF;
  padding: 30px 0;
}

.lp1-applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp1-application-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 21px 23px;
  box-shadow: 0px 1px 10px rgba(32, 33, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp1-application-card h3 {
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: 700;
  color: #101216;
}

.lp1-application-block {
  background: rgba(239, 239, 239, 0.5);
  border-radius: 12px;
  padding: 12px;
}

.lp1-application-block h4 {
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 500;
  color: #101216;
  margin-bottom: 4px;
}

.lp1-application-block p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  color: #5F6368;
  line-height: 1.6;
}

.lp1-application-arrow {
  align-self: center;
  color: #333333;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   Case Study (copied from components/home/case-study.html + home.css —
   Figma Node 1844:1937 — keeps the original `.cs-*` / `.home-case-study`
   class names as-is so it stays a drop-in match with the home page version.)
   -------------------------------------------------------------------------- */
.home-case-study {
  padding: 80px 0 0;
  background: #ffffff;
  overflow: hidden;
}

/* Two-column layout: ~45% left, ~55% right */
.cs-layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: center;
}

/* ---------- LEFT COLUMN ---------- */
.cs-left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Slide stack — all slides share the same grid cell (so the tallest one
   sets the wrapper height and swapping never jumps). Prev/next in
   cs-nav-controls slides the incoming/outgoing pair past each other via the
   --cs-x offset (see the .cs-enter-/.cs-leave- classes below), while each direct child
   (.cs-header, .cs-desc-block, .cs-testimonial-card) fades/rises in with a
   staggered delay. All driven by class toggles in initLp1CaseStudyCarousel. */
.cs-slides {
  display: grid;
}

.cs-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  --cs-x: 0px;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(var(--cs-x));
  transition: transform 0.45s ease, visibility 0s linear 0.5s;
}

.cs-slide.is-active {
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.45s ease;
}

/* Direction offsets — shared with .cs-devices-img below. "next" enters from
   the right / exits to the left; "prev" is the mirror image. */
.cs-enter-next,
.cs-leave-prev {
  --cs-x: 36px;
}

.cs-enter-prev,
.cs-leave-next {
  --cs-x: -36px;
}

/* Disables transitions for one frame so the incoming slide/image can be
   snapped to its enter offset before animating in (see initLp1CaseStudyCarousel). */
.cs-no-anim {
  transition: none !important;
}

/* Staggered reveal of each block inside the active slide */
.cs-slide > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cs-slide.is-active > * {
  opacity: 1;
  transform: translateY(0);
}

.cs-slide.is-active > *:nth-child(1) { transition-delay: 0s; }
.cs-slide.is-active > *:nth-child(2) { transition-delay: 0.08s; }
.cs-slide.is-active > *:nth-child(3) { transition-delay: 0.16s; }

/* Header block */
.cs-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.cs-label {
  font-family: var(--font-family-primary);
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  display: block;
  line-height: 1.2;
}

.cs-main-title {
  font-family: var(--font-family-primary);
  font-size: 40px;
  font-weight: 800;
  font-style: normal;
  color: #EE0033;
  line-height: 1.1;
  margin: 0;
}

/* Description paragraphs */
.cs-desc-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 4px;
}

.cs-desc-item {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  color: #344054;
  line-height: 1.65;
  margin: 0;
}

/* Dark testimonial card */
.cs-testimonial-card {
  background: #282828;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs-testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cs-quote-mark {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  /* Figma (node inside 1844:2359) renders this icon flipped vertically. */
  transform: scaleY(-1);
}

.cs-client-logo {
  height: 28px;
  max-width: 180px;
  object-fit: contain;
}

.cs-testimonial-text {
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 400;
  color: #D0D5DD;
  line-height: 1.75;
  margin: 0;
}

.cs-testimonial-author {
  font-family: var(--font-family-primary);
  font-size: 13px;
  font-weight: 500;
  color: #9AA0AC;
  margin: 0;
}

/* Navigation buttons — outside the card */
.cs-nav-controls {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.cs-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 99px;
  border: none;
  background: #F5F5F5;
  color: #0F172A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.12), 0px 3px 3px 0px rgba(0, 0, 0, 0.14), inset 0px -3px 0px 0px #e9e9e9, inset 0px 1px 0px 0px rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-nav-btn:hover {
  transform: scale(1.12);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.18), inset 0px -3px 0px 0px #e9e9e9, inset 0px 1px 0px 0px rgba(255, 255, 255, 0.7);
}

.cs-nav-btn:active {
  transform: scale(0.96);
}

/* ---------- RIGHT COLUMN ---------- */
.cs-right-col {
  position: relative;
  /* Allow the device mockup to slightly overflow right edge */
  margin-right: -40px;
  /* Fixed box (ratio of the logistics mockup) so swapping to an image with a
     different natural aspect ratio (e.g. the telecom mockup) never changes
     the section height. Both images sit inset:0 + object-fit:contain inside it. */
  aspect-ratio: 930 / 793;
}

.cs-devices-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  --cs-x: 0px;
  opacity: 0;
  transform: translateX(var(--cs-x)) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.cs-devices-img.is-active {
  opacity: 1;
  transform: translateX(var(--cs-x)) scale(1);
  pointer-events: auto;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1280px) {
  .cs-layout {
    gap: 40px;
  }
  .cs-right-col {
    margin-right: -20px;
  }
}

@media (max-width: 1024px) {
  .cs-label {
    font-size: 26px;
  }
  .cs-main-title {
    font-size: 32px;
  }
  .cs-right-col {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .home-case-study {
    padding: 60px 0;
  }
  .cs-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cs-right-col {
    order: -1;
    margin-right: 0;
  }
  .cs-label {
    font-size: 22px;
  }
  .cs-main-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .cs-testimonial-card {
    padding: 24px 20px;
  }
  .cs-main-title {
    font-size: 24px;
  }
}

/* --------------------------------------------------------------------------
   Phản hồi người dùng (Testimonials)
   -------------------------------------------------------------------------- */
.lp1-testimonials {
  position: relative;
  padding: 100px 0;
  background: var(--dark-bg, #0B0D12);
  overflow: hidden;
}

.lp1-testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../images/landing-1/testimonials-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

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

.lp1-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp1-testimonial-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 21px 23px;
  box-shadow: 0px 1px 10px rgba(32, 33, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp1-testimonial-quote {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px;
}

.lp1-testimonial-quote p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  color: #5F6368;
  line-height: 1.82;
  margin: 0;
}

.lp1-testimonial-person {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
}

.lp1-testimonial-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #F0F1F2;
  color: #6B7280;
  font-size: 18px;
}

.lp1-testimonial-info h3 {
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}

.lp1-testimonial-info p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  color: #E9E9E9;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Gói dịch vụ (Pricing)
   -------------------------------------------------------------------------- */
.lp1-pricing {
  padding: 30px 0;
}

.lp1-section-head-left {
  text-align: left;
  max-width: 1200px;
  margin: 0 0 48px;
}

.lp1-section-head-left .lp1-eyebrow,
.lp1-section-head-left .lp1-section-title {
  text-align: left;
}

.lp1-section-desc-left {
  text-align: left;
}

.lp1-pricing-grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 40px;
}

.lp1-pricing-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #909090;
  border-radius: 16px;
  padding: 21px 23px;
  box-shadow: 0px 1px 10px rgba(32, 33, 36, 0.1);
}

.lp1-pricing-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lp1-pricing-name {
  font-family: var(--font-family-primary);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: #202124;
}

.lp1-pricing-badge {
  background: var(--primary-color, #EE3000);
  color: #FFFFFF;
  font-family: var(--font-family-primary);
  font-size: 16px;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.lp1-pricing-highlight {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--primary-color, #EE3000);
  line-height: 21px;
  margin: 8px 0;
}

.lp1-pricing-subtitle {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #5F6368;
  margin-bottom: 4px;
}

.lp1-pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lp1-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #202124;
  line-height: 20.25px;
}

.lp1-pricing-list i {
  color: var(--primary-color, #EE3000);
  font-size: 13px;
  margin-top: 5px;
  flex-shrink: 0;
}

.lp1-pricing-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp1-pricing-note {
  text-align: center;
  background: #F9F9F9;
  border: 1px solid #A8A8A8;
  border-radius: 12px;
  padding: 8px 12px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #5F6368;
}

.lp1-pricing-note-accent {
  border-color: var(--primary-color, #EE3000);
}

.lp1-pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 10px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  transition: all 0.2s ease;
}

.lp1-pricing-btn-outline {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #202124;
}

.lp1-pricing-btn-outline:hover {
  background: #F6F8FC;
}

.lp1-pricing-btn-solid {
  background: var(--primary-color, #EE3000);
  color: #FFFFFF;
}

.lp1-pricing-btn-solid:hover {
  background: #d42900;
}

.lp1-pricing-card-featured {
  border-color: var(--primary-color, #EE3000);
}

.lp1-compare-table-wrap {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0px 1px 10px rgba(32, 33, 36, 0.1);
  overflow-x: auto;
}

.lp1-compare-title {
  text-align: center;
  background: #F5F5F5;
  border-bottom: 1px solid #E5E7EB;
  border-radius: 16px 16px 0 0;
  padding: 12px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
}

.lp1-compare-table {
  min-width: 720px;
}

.lp1-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.lp1-compare-header .lp1-compare-cell {
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
}

.lp1-compare-header .lp1-compare-cell-accent {
  background: #EE0033;
}

.lp1-compare-cell {
  padding: 17px 20px;
  border-bottom: 1px solid #EFF1F4;
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #202124;
}

.lp1-compare-cell-highlight {
  background: #FFF4F6;
}

.lp1-compare-row-last .lp1-compare-cell {
  border-bottom: none;
}

.lp1-muted {
  color: #5F6368;
}

.lp1-plus {
  color: #EE0033;
  font-weight: 800;
  margin-right: 2px;
}

/* --------------------------------------------------------------------------
   Thông tin tin cậy & CTA cuối trang (Trust)
   -------------------------------------------------------------------------- */
.lp1-trust {
  padding: 20px 0 60px;
}

.lp1-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.lp1-trust-card {
  background: rgba(245, 245, 245, 0.5);
  border: 3px solid #FFFFFF;
  border-radius: 23px;
  box-shadow: 0px 5px 10px rgba(118, 118, 118, 0.25);
  padding: 27px;
}

.lp1-trust-card h3 {
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 700;
  color: #101216;
  margin-bottom: 12px;
}

.lp1-trust-card p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #5F6368;
  line-height: 29.16px;
}

.lp1-trust-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 23px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 24px;
}

.lp1-trust-cta-text h3 {
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}

.lp1-trust-cta-text p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #3D3D3D;
  line-height: 24px;
}

.lp1-trust-cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.lp1-trust-cta-actions .lp1-pricing-btn {
  padding: 0 17px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Đối tác (Partners) — cùng cấu trúc/hành vi với components/about/partners.html,
   đổi tên lớp sang tiền tố lp1- cho nhất quán với file này.
   -------------------------------------------------------------------------- */
.lp1-partners {
  padding: 20px 0;
  background: #F7F8FA;
  width: 100%;
}

.lp1-partners-container {
  max-width: 100%;
  width: 100%;
  padding: 0 80px;
}

.lp1-partners-marquee {
  overflow: hidden;
  width: 100%;
}

.lp1-partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 80px;
  will-change: transform;
}

.lp1-partners-marquee-ltr .lp1-partners-track {
  animation: lp1-partners-scroll-ltr 28s linear infinite;
}

.lp1-partners-marquee:hover .lp1-partners-track {
  animation-play-state: paused;
}

@keyframes lp1-partners-scroll-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .lp1-partners-track {
    animation: none !important;
  }
}

.lp1-partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp1-partner-sap img {
  width: 60px;
  height: 30px;
}

.lp1-partner-salesforce img {
  width: 142px;
  height: 98px;
}

.lp1-partner-cisco img {
  width: 143px;
  height: 75px;
}

.lp1-partner-google img {
  width: 128px;
  height: 110px;
}

.lp1-partner-oracle img {
  width: 207px;
  height: 40px;
}

.lp1-partner-fpt img {
  width: 125px;
  height: 38px;
}

.lp1-partner-logo-item img {
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lp1-partner-logo-item img:hover {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .lp1-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp1-applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp1-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp1-features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .lp1-feature-card:nth-child(4) {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .lp1-feature-card:nth-child(5) {
    grid-column: 1;
  }

  .lp1-feature-card:nth-child(7) {
    grid-column: 1;
  }
}

@media (max-width: 992px) {
  .lp1-banner {
    padding-top: 140px;
  }

  .lp1-banner-inner {
    flex-direction: column;
  }

  .lp1-banner-visual {
    width: 100%;
    height: 320px;
  }

  .lp1-mini-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp1-pain-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lp1-pain-stack {
    height: 210px;
    max-width: 480px;
  }

  .lp1-pain-card[data-pos="back1"] {
    transform: translate(16px, 10px);
  }

  .lp1-pain-card[data-pos="back2"] {
    transform: translate(30px, 20px);
  }

  .lp1-pricing-grid {
    flex-direction: column;
  }

  .lp1-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .lp1-banner-title {
    font-size: 36px;
  }

  .lp1-pain-card {
    padding: 20px 28px;
  }

  .lp1-values-grid,
  .lp1-applications-grid {
    grid-template-columns: 1fr;
  }

  .lp1-features-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(180px, auto);
  }

  .lp1-feature-card:nth-child(4),
  .lp1-feature-card:nth-child(5),
  .lp1-feature-card:nth-child(7) {
    grid-column: 1;
    grid-row: auto;
  }

  .lp1-feature-card {
    min-height: 200px;
  }

  .lp1-trust-grid {
    grid-template-columns: 1fr;
  }

  .lp1-trust-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp1-trust-cta-actions {
    width: 100%;
  }

  .lp1-trust-cta-actions .lp1-pricing-btn {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .lp1-mini-cards {
    grid-template-columns: 1fr;
  }

  .lp1-banner-dots {
    flex-wrap: wrap;
  }

  .lp1-badge-illustrative {
    margin-left: 0;
  }

  .lp1-partners-container {
    padding: 0 24px;
  }

  .lp1-partners-track {
    gap: 48px;
  }
}
