/* ==========================================================================
   KOC VIET - HOMEPAGE (TRANG CHỦ) DESIGN SYSTEM
   - Full-width sections edge-to-edge (100% viewport width)
   - Seamless user hero visual (zero bounding box)
   - Floating stats directly on dark hero background
   - Full-width organic wave divider
   - Alternating section backgrounds: White (#ffffff) & Soft Gray (#f8fafc)
   - Full-width Orange CTA ("Booking minh bạch...") with perfectly centered title
   - Crisp white navbar links with red/coral active underline
   ========================================================================== */

/* --- Base container for homepage --- */
.lp-home {
  --color-home-paper: #030814;
  --color-home-paper-2: #09162e;
  --color-home-paper-3: #112244;
  --color-home-ink: #ffffff;
  --color-home-muted: rgba(255, 255, 255, 0.75);
  --color-home-rule: rgba(255, 255, 255, 0.12);
  --color-home-accent: #ea583c;
  --color-home-accent-hover: #f36c52;
  --color-home-accent-ink: #ffffff;
  
  --color-light-bg: #ffffff;
  --color-light-gray: #f8fafc;
  --color-light-ink: #0f172a;
  --color-light-muted: #475569;
  --color-light-rule: #e2e8f0;

  background: var(--color-light-bg);
  color: var(--color-light-ink);
  font-family: var(--font-body, "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, sans-serif);
  overflow-x: clip;
  width: 100%;
}

/* Ensure no global .lp-section restricts width on homepage */
.lp-home .lp-section,
.lp-home section {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Common Coral/Red text highlight */
.lp-home .lp-coral-text,
.lp-home .coral {
  color: #ea583c !important;
}

/* ==========================================================================
   1. NAVBAR / HEADER (Background: Trắng #ffffff per spec)
   ========================================================================== */
.lp-home .lp-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.lp-home .lp-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.lp-home .lp-logo,
.lp-logo {
  display: inline-flex !important;
  align-items: center !important;
  height: 40px !important;
  width: 155px !important;
  min-width: 155px !important;
  max-width: 155px !important;
  flex: 0 0 155px !important;
  margin: 0 24px 0 0 !important;
  padding: 0 !important;
  text-indent: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.lp-home .lp-logo picture,
.lp-logo picture {
  display: flex !important;
  align-items: center !important;
  height: 40px !important;
  width: 155px !important;
}

.lp-home .lp-logo img,
.lp-logo img {
  height: 38px !important;
  width: 155px !important;
  max-width: 155px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  background: transparent !important;
  background-image: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lp-home .lp-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.1vw, 18px);
  flex: 1;
  min-width: 0;
}

.lp-home .lp-nav > a {
  position: relative;
  color: #1e293b;
  opacity: 0.88;
  font-size: clamp(12.5px, 0.95vw, 14px);
  font-weight: 500;
  text-decoration: none;
  padding: 8px clamp(3px, 0.5vw, 7px);
  transition: opacity 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-home .lp-nav > a:hover {
  color: #ea583c;
  opacity: 1;
}

.lp-home .lp-nav > a.active {
  color: #ea583c;
  opacity: 1;
  font-weight: 700;
}

.lp-home .lp-nav > a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 4px;
  height: 2.5px;
  background: #ea583c;
  border-radius: 2px;
}

.lp-home .lp-auth-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: clamp(8px, 1vw, 16px);
}

.lp-home .lp-auth-btns .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp-home .lp-auth-btns .btn.ghost {
  background: transparent;
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
}

.lp-home .lp-auth-btns .btn.ghost:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.lp-home .lp-auth-btns .btn.primary {
  background: #ea583c;
  border: 1px solid #ea583c;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(234, 88, 60, 0.35);
}

.lp-home .lp-auth-btns .btn.primary:hover {
  background: #f36c52;
  box-shadow: 0 4px 14px rgba(234, 88, 60, 0.5);
}

.lp-home .lp-burger {
  display: none;
  background: transparent;
  border: 0;
  color: #0f172a;
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   2. HERO SECTION (Dark Navy Radial Blend, Full Width, Seamless Image)
   ========================================================================== */
.lp-home .lp-hero-home {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 72% 38%, #152238 0%, #060e1d 55%, #020712 100%);
  color: #ffffff;
  padding: 44px 0 0 0;
  overflow: hidden;
}

.lp-home .lp-hero-home-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}

/* Left Hero Column */
.lp-home .lp-hero-content {
  max-width: 580px;
  padding-bottom: 20px;
}

.lp-home .lp-hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.lp-home .lp-hero-eyebrow-dash {
  width: 22px;
  height: 2px;
  background: #ea583c;
  display: inline-block;
}

.lp-home .lp-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.72);
}

.lp-home .lp-hero-title {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(2.4rem, 4.3vw, 3.8rem);
  font-weight: 600;
  line-height: 1.14;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.015em;
}

.lp-home .lp-hero-title span.coral {
  color: #ea583c;
  display: block;
}

.lp-home .lp-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px 0;
  max-width: 520px;
}

.lp-home .lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.lp-home .lp-hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-home .lp-hero-cta .btn-primary {
  background: #ea583c;
  border: 1px solid #ea583c;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(234, 88, 60, 0.35);
}

.lp-home .lp-hero-cta .btn-primary:hover {
  background: #f36c52;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234, 88, 60, 0.45);
}

.lp-home .lp-hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.lp-home .lp-hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* Right Hero Visual Column (Zero Border Box, 100% Seamless Blend) */
.lp-home .lp-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-home .lp-hero-brush-arc {
  position: absolute;
  bottom: 10%;
  left: 2%;
  width: 95%;
  height: 70%;
  background: radial-gradient(ellipse at 45% 65%, rgba(234, 88, 60, 0.4) 0%, rgba(234, 88, 60, 0) 72%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.lp-home .lp-hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: none;
}

/* ==========================================================================
   STATS STRIP (Directly on Hero Dark Background - No Enclosed Card Box!)
   ========================================================================== */
.lp-home .lp-hero-stats-wrap {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 32px auto 20px auto;
  padding: 0 24px;
}

.lp-home .lp-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: transparent;
  border: none;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  align-items: center;
}

.lp-home .lp-hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  position: relative;
}

.lp-home .lp-stat-icon-circle {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(234, 88, 60, 0.45);
  background: rgba(234, 88, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea583c;
}

.lp-home .lp-stat-icon-circle svg {
  width: 22px;
  height: 22px;
}

.lp-home .lp-stat-info {
  display: flex;
  flex-direction: column;
}

.lp-home .lp-stat-num {
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.lp-home .lp-stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
  font-weight: 400;
}

/* ==========================================================================
   FULL-WIDTH ORGANIC WAVE DIVIDER (Đường lượn sóng kéo dài hết màn hình)
   ========================================================================== */
.lp-home .lp-hero-wave-divider {
  width: 100%;
  height: 80px;
  background: transparent;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  margin-bottom: -1px;
}

.lp-home .lp-hero-wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #ffffff;
}

/* ==========================================================================
   3. SECTION 1: SPLIT SECTION (Full Width, Background: TRẮNG #ffffff)
   ========================================================================== */
.lp-home .lp-split-section {
  width: 100% !important;
  background: #ffffff;
  padding: 50px 24px 75px 24px;
}

.lp-home .lp-split-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}

/* 3A. Left Side: Hoạt động Booking & KOC mới nhất */
.lp-home .lp-activity-col {
  background: #ffffff;
}

.lp-home .lp-activity-head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f1f3f5;
}

.lp-home .lp-activity-title-wrap {
  display: flex;
  flex-direction: column;
}

.lp-home .lp-activity-title {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px 0;
}

.lp-home .lp-activity-underline-accent {
  width: 38px;
  height: 3px;
  background: #ea583c;
  border-radius: 2px;
}

.lp-home .lp-activity-all-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-home .lp-activity-all-link:hover {
  color: #ea583c;
  text-decoration: underline;
}

/* Activity Table / Rows */
.lp-home .lp-activity-table {
  display: flex;
  flex-direction: column;
}

.lp-home .lp-activity-row-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 4px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}

.lp-home .lp-activity-row-item:hover {
  background: #fafbfd;
}

/* Category Pill */
.lp-home .lp-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
}

.lp-home .lp-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.lp-home .lp-cat-dot.green {
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.lp-home .lp-cat-dot.red {
  background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.lp-home .lp-cat-dot.orange {
  background: #f97316;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* User Profile */
.lp-home .lp-user-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.lp-home .lp-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
  flex: 0 0 28px;
}

.lp-home .lp-user-name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
}

/* Activity text */
.lp-home .lp-activity-desc {
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* Timestamp */
.lp-home .lp-activity-timestamp {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
  text-align: right;
}

/* 3B. Right Side: Dành cho doanh nghiệp & KOC */
.lp-home .lp-audience-col {
  position: relative;
  padding-left: 12px;
}

.lp-home .lp-audience-heading {
  font-family: var(--font-display, "Lora", serif);
  font-size: 32px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.lp-home .lp-audience-sub {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 28px 0;
}

.lp-home .lp-audience-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-home .lp-audience-box {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.lp-home .lp-audience-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(234, 88, 60, 0.25);
}

.lp-home .lp-audience-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(234, 88, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea583c;
  margin-bottom: 14px;
}

.lp-home .lp-audience-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.lp-home .lp-audience-box-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.lp-home .lp-audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-home .lp-audience-list li {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.lp-home .lp-audience-list li .chk {
  color: #ea583c;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}

.lp-home .lp-audience-action-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #ea583c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-home .lp-audience-action-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   4. SECTION 3: 4 BƯỚC CHO MỘT CHIẾN DỊCH TRỌN VẸN
   ========================================================================== */
.lp-home .lp-home-campaign-steps,
.lp-home .lp-campaign-desk-section {
  width: 100% !important;
  background: #f8fafc;
  padding: 75px 24px;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.lp-home .lp-home-campaign-steps-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.lp-home .lp-steps-heading {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
  text-align: center;
  margin: 0 0 36px 0;
}

.lp-home .lp-steps-video-wrap {
  max-width: 780px;
  margin: 0 auto 36px auto;
  width: 100%;
}

.lp-home .lp-desk-video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lp-home .lp-desk-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Play Overlay Button */
.lp-home .lp-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 0;
  color: #111827;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
}

.lp-home .lp-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ffffff;
  color: #ea583c;
}

.lp-home .lp-video-play-btn span {
  margin-left: 3px;
}

/* Bottom Player Bar with Timeline Scrubber & Action Controls */
.lp-home .lp-video-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.95) 100%);
  padding: 24px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
  z-index: 10;
  cursor: default;
}

/* Timeline / Progress / Seek Bar */
.lp-home .lp-video-progress-wrap {
  position: relative;
  width: 100%;
  height: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  padding: 4px 0;
}

.lp-home .lp-video-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: height 0.15s ease;
}

.lp-home .lp-video-progress-wrap:hover .lp-video-progress-track {
  height: 7px;
}

.lp-home .lp-video-progress-played {
  position: absolute;
  left: 0;
  height: 5px;
  background: #ea583c;
  border-radius: 4px;
  pointer-events: none;
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: height 0.15s ease;
}

.lp-home .lp-video-progress-wrap:hover .lp-video-progress-played {
  height: 7px;
}

.lp-home .lp-video-progress-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ea583c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  margin-right: -6.5px;
  transform: scale(0);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-home .lp-video-progress-wrap:hover .lp-video-progress-thumb,
.lp-home .lp-video-progress-wrap:active .lp-video-progress-thumb {
  transform: scale(1.1);
}

/* Controls Row */
.lp-home .lp-video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.lp-home .lp-video-ctrls-left,
.lp-home .lp-video-ctrls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-home .lp-ctrl-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.lp-home .lp-ctrl-btn:hover {
  color: #ea583c;
  transform: scale(1.15);
}

.lp-home .lp-video-time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.5px;
}

/* 4C. Bottom: 4 Steps Cards Grid */
.lp-home .lp-steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.lp-home .lp-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-home .lp-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lp-home .lp-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ea583c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.lp-home .lp-step-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-home .lp-step-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 1024px) {
  .lp-home .lp-steps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .lp-home .lp-steps-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   5. SECTION: ĐIỀU THỊ TRƯỜNG ĐANG THIẾU (Premium Gradient Surface & Rich Cards)
   ========================================================================== */
.lp-home .lp-home-proof,
.lp-home-proof {
  width: 100% !important;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%) !important;
  padding: 85px 24px !important;
  position: relative !important;
}

.lp-home .lp-home-proof-inner,
.lp-home-proof-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.lp-home .lp-proof-heading,
.lp-home-proof .lp-section-head h2 {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px auto;
  line-height: 1.35;
}

.lp-home .lp-proof-grid,
.lp-home-proof .lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card Base */
.lp-home .lp-proof-card,
.lp-home-proof .lp-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 28px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02) !important;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease !important;
}

.lp-home .lp-proof-card:hover,
.lp-home-proof .lp-card:hover {
  border-color: #ea583c !important;
  box-shadow: 0 16px 36px -4px rgba(234, 88, 60, 0.12), 0 6px 12px -2px rgba(15, 23, 42, 0.04) !important;
  transform: translateY(-5px) !important;
}

.lp-proof-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

/* Icon Box - Unified Brand Coral Style */
.lp-proof-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a59 0%, #ea583c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 60, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-proof-card:hover .lp-proof-icon-box {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(234, 88, 60, 0.38);
}

.lp-proof-icon-box svg {
  width: 22px;
  height: 22px;
}

/* Badges - Unified Brand Soft Coral Pill */
.lp-proof-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  background: #fff1ee;
  color: #ea583c;
  border: 1px solid rgba(234, 88, 60, 0.18);
}

/* Titles and Text */
.lp-home .lp-proof-card-title,
.lp-proof-card-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.01em !important;
}

.lp-home .lp-proof-card-desc,
.lp-proof-card-desc {
  font-size: 13.8px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Brand-aligned proof card classes (all alias to the clean brand style) */
.lp-home .lp-proof-card.lp-proof-coral,
.lp-home .lp-proof-card.lp-proof-teal,
.lp-home .lp-proof-card.lp-proof-blue,
.lp-home .lp-proof-card.lp-proof-amber,
.lp-home .lp-proof-card.lp-proof-purple,
.lp-proof-coral,
.lp-proof-teal,
.lp-proof-blue,
.lp-proof-amber,
.lp-proof-purple {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
}

.lp-home .lp-proof-card.lp-proof-coral:hover,
.lp-home .lp-proof-card.lp-proof-teal:hover,
.lp-home .lp-proof-card.lp-proof-blue:hover,
.lp-home .lp-proof-card.lp-proof-amber:hover,
.lp-home .lp-proof-card.lp-proof-purple:hover,
.lp-proof-coral:hover,
.lp-proof-teal:hover,
.lp-proof-blue:hover,
.lp-proof-amber:hover,
.lp-proof-purple:hover {
  border-color: #ea583c !important;
  box-shadow: 0 16px 36px -4px rgba(234, 88, 60, 0.12), 0 6px 12px -2px rgba(15, 23, 42, 0.04) !important;
}

.lp-proof-coral .lp-proof-icon-box,
.lp-proof-teal .lp-proof-icon-box,
.lp-proof-blue .lp-proof-icon-box,
.lp-proof-amber .lp-proof-icon-box,
.lp-proof-purple .lp-proof-icon-box {
  background: linear-gradient(135deg, #ff7a59 0%, #ea583c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 60, 0.28);
}

.lp-proof-coral .lp-proof-badge,
.lp-proof-teal .lp-proof-badge,
.lp-proof-blue .lp-proof-badge,
.lp-proof-amber .lp-proof-badge,
.lp-proof-purple .lp-proof-badge {
  background: #fff1ee;
  color: #ea583c;
  border: 1px solid rgba(234, 88, 60, 0.18);
}

/* Badges */
.lp-proof-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  background: #fff1ee;
  color: #ea583c;
  border: 1px solid rgba(234, 88, 60, 0.18);
}

/* Titles and Text */
.lp-home .lp-proof-card-title,
.lp-proof-card-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.01em !important;
}

.lp-home .lp-proof-card-desc,
.lp-proof-card-desc {
  font-size: 13.8px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .lp-home .lp-proof-grid,
  .lp-home-proof .lp-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 640px) {
  .lp-home .lp-proof-grid,
  .lp-home-proof .lp-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ==========================================================================
   6. SECTION 4: PHỦ MỌI NGÀNH HÀNG (Full Width, Background: XÁM #f8fafc)
   ========================================================================== */
.lp-home .lp-home-categories {
  width: 100% !important;
  background: #f8fafc !important;
  padding: 75px 24px;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.lp-home .lp-home-categories-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.lp-home .lp-home-categories .lp-section-head h2 {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin: 0 auto 32px auto;
}

.lp-home .lp-home-categories .lp-section-media {
  max-width: 1100px;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.lp-home .lp-home-categories .lp-chip-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lp-home .lp-home-categories .lp-chip {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.15s ease;
}

.lp-home .lp-home-categories .lp-chip:hover {
  border-color: #ea583c;
  color: #ea583c;
  background: rgba(234, 88, 60, 0.05);
}

/* ==========================================================================
   7. SECTION 5: AI CLONE SPOTLIGHT (Full Width Background & Centered Content)
   ========================================================================== */
.lp-home .lp-home-spotlight {
  width: 100% !important;
  max-width: 100% !important;
  background: linear-gradient(135deg, #091222 0%, #152642 100%) !important;
  padding: 80px 24px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.lp-home .lp-home-spotlight::after {
  content: "";
  position: absolute;
  top: -40%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 60, 0.28) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.lp-home .lp-home-spotlight-inner {
  max-width: 900px !important;
  margin: 0 auto !important;
  width: 100% !important;
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.lp-home .lp-home-spotlight .lp-banner,
.lp-home .lp-banner {
  width: 100% !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: #ffffff;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-shadow: none !important;
  border: none !important;
}

.lp-home .lp-home-spotlight h3,
.lp-home .lp-banner h3 {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 auto 16px auto !important;
  text-align: center !important;
  line-height: 1.3;
}

.lp-home .lp-home-spotlight p,
.lp-home .lp-banner p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 720px !important;
  margin: 0 auto 28px auto !important;
  text-align: center !important;
}

.lp-home .lp-home-spotlight .btn,
.lp-home .lp-banner .btn {
  background: #ea583c !important;
  color: #ffffff !important;
  padding: 13px 32px !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: fit-content !important;
  margin: 0 auto !important;
  box-shadow: 0 4px 16px rgba(234, 88, 60, 0.4) !important;
  transition: all 0.2s ease !important;
}

.lp-home .lp-home-spotlight .btn:hover,
.lp-home .lp-banner .btn:hover {
  background: #f36c52 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(234, 88, 60, 0.5) !important;
}

/* ==========================================================================
   8. SECTION 6: TESTIMONIALS (Full Width, Background: XÁM #f8fafc)
   ========================================================================== */
.lp-home .lp-home-stories {
  width: 100% !important;
  background: #f8fafc !important;
  padding: 75px 24px;
  border-top: 1px solid #edf2f7;
}

.lp-home .lp-home-stories-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.lp-home .lp-home-stories .lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-home .lp-quote {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-home .lp-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.lp-home .lp-quote .stars {
  color: #ea583c;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.lp-home .lp-quote p,
.lp-home .lp-quote-body {
  font-size: 15px;
  line-height: 1.68;
  color: #334155;
  margin: 0;
  font-style: normal;
}

.lp-home .lp-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.lp-home .lp-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

.lp-home .lp-quote-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.lp-home .lp-quote-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-home .lp-quote-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.lp-home .lp-quote-role {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

.lp-home .lp-role-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.lp-home .lp-role-badge.koc {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.lp-home .lp-role-badge.business {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.15);
}

/* ==========================================================================
   9. SECTION 7: FINAL CTA (Full Width, Background: MÀU CAM / CORAL)
   "Booking minh bạch. Thanh toán an tâm. Kết nối bền vững."
   ========================================================================== */
.lp-home .lp-cta-final {
  width: 100% !important;
  max-width: 100% !important;
  background: linear-gradient(135deg, #e02424 0%, #ea583c 50%, #f97316 100%) !important;
  padding: 85px 24px !important;
  text-align: center !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.lp-home .lp-cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.lp-home .lp-cta-final-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-home .lp-cta-final h2 {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  margin: 0 auto 30px auto !important;
  max-width: 100% !important;
  width: 100% !important;
  text-align: center !important;
  line-height: 1.3;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  display: block !important;
}

.lp-home .lp-cta-final h2 span,
.lp-home .lp-cta-final h2 .lp-nowrap-desktop {
  display: inline !important;
  white-space: normal !important;
  text-align: center !important;
  color: #ffffff !important;
}

.lp-home .lp-cta-final .lp-hero-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin: 0 auto !important;
  width: 100%;
  max-width: 600px;
}

/* Button 1 on Orange Background: Solid Dark Navy */
.lp-home .lp-cta-final .btn.navy,
.lp-home .lp-cta-final .btn:not(.ghost) {
  background: #091222 !important;
  color: #ffffff !important;
  border: 1px solid #091222 !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp-home .lp-cta-final .btn.navy:hover,
.lp-home .lp-cta-final .btn:not(.ghost):hover {
  background: #111e35 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

/* Button 2 on Orange Background: White Outlined */
.lp-home .lp-cta-final .btn.ghost {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp-home .lp-cta-final .btn.ghost:hover {
  background: #ffffff !important;
  color: #ea583c !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   10. FOOTER (Background: #0B1F3A per spec)
   ========================================================================== */
.lp-home .lp-footer {
  width: 100% !important;
  background: #0B1F3A !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 65px 0 0 0 !important;
  border-top: none !important;
  box-sizing: border-box !important;
}

.lp-home .lp-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.lp-home .lp-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: none !important; /* Removed duplicate line */
}

.lp-home .lp-footer-brand .lp-footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
}

.lp-home .lp-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
}

.lp-home .lp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lp-home .lp-footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.lp-home .lp-footer-col a,
.lp-home .lp-footer-col p {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin: 0 0 10px 0;
  transition: color 0.15s ease;
}

.lp-home .lp-footer-col a:hover {
  color: #ffffff;
}

/* Single divider line spanning 100% full screen width */
.lp-home .lp-footer-bottom-wrap {
  width: 100% !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  margin: 0 !important;
  padding: 24px 24px 28px 24px !important;
  box-sizing: border-box !important;
}

.lp-home .lp-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 !important;
  border-top: none !important;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ==========================================================================
   11. GENERIC LANDING SECTION & GRID UTILITIES
   ========================================================================== */
.lp-home .lp-section {
  width: 100% !important;
  max-width: 100% !important;
  background: #ffffff;
  padding: 75px 24px !important;
  box-sizing: border-box !important;
  position: relative;
}

.lp-home .lp-section.tint,
.lp-home .lp-section-tint {
  background: #f8fafc !important;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.lp-home .lp-section-inner,
.lp-home .lp-section > .lp-section-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.lp-home .lp-section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px auto;
  position: relative;
}

.lp-home .lp-section-head h2 {
  font-family: var(--font-display, "Lora", serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.32;
  margin: 0 auto 12px auto;
}

.lp-home .lp-section-head p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0 auto;
}

.lp-home .lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-home .lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-home .lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.lp-home .lp-grid-5,
.lp-home .lp-steps.n5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* Base Card */
.lp-home .lp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-sizing: border-box;
}

.lp-home .lp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.lp-home .lp-card h3 {
  font-family: var(--font-display, "Lora", serif);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.lp-home .lp-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.lp-home .lp-card p strong {
  color: #0f172a;
}

/* Themed Cards Additional Variations (Red/Warning, Purple/Legal) */
/* Themed Cards Additional Variations (Red/Warning, Purple/Legal) */
.lp-home .lp-proof-card.lp-proof-red,
.lp-home .lp-card.lp-card-warning,
.lp-proof-red {
  background: #ffffff !important;
  border: 1.5px solid #fecaca !important;
  box-shadow: 0 4px 16px -2px rgba(220, 38, 38, 0.04) !important;
}

.lp-proof-red .lp-proof-icon-box {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28);
}

.lp-proof-red .lp-proof-badge {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.lp-proof-red:hover {
  border-color: #dc2626 !important;
  box-shadow: 0 16px 36px -4px rgba(220, 38, 38, 0.12) !important;
  transform: translateY(-5px) !important;
}

.lp-home .lp-proof-card.lp-proof-purple,
.lp-home .lp-card.lp-card-legal,
.lp-proof-purple {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04) !important;
}

.lp-proof-purple .lp-proof-icon-box {
  background: linear-gradient(135deg, #ff7a59 0%, #ea583c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 60, 0.28);
}

.lp-proof-purple .lp-proof-badge {
  background: #fff1ee;
  color: #ea583c;
  border: 1px solid rgba(234, 88, 60, 0.18);
}

.lp-proof-purple:hover {
  border-color: #ea583c !important;
  box-shadow: 0 16px 36px -4px rgba(234, 88, 60, 0.12) !important;
  transform: translateY(-5px) !important;
}

/* ==========================================================================
   12. STEP CARDS & TIMELINE
   ========================================================================== */
.lp-home .lp-step,
.lp-home .lp-step-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-home .lp-step:hover,
.lp-home .lp-step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.lp-home .lp-step .num,
.lp-home .lp-step-item .num,
.lp-home .lp-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ea583c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(234, 88, 60, 0.35);
}

.lp-home .lp-step p,
.lp-home .lp-step-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.lp-home .lp-step p strong,
.lp-home .lp-step-item p strong {
  font-size: 14px;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 6px;
}

/* ==========================================================================
   13. STATEMENT HIGHLIGHT CARDS & FLOW BANNERS
   ========================================================================== */
.lp-home .lp-box,
.lp-home .lp-callout-box,
.lp-home .lp-statement-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 32px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #1e293b;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(234, 88, 60, 0.06);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.lp-home .lp-box::before,
.lp-home .lp-callout-box::before,
.lp-home .lp-statement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #ea583c 0%, #f59e0b 50%, #0d9488 100%);
}

.lp-home .lp-box:hover,
.lp-home .lp-callout-box:hover,
.lp-home .lp-statement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(234, 88, 60, 0.15);
  border-color: #cbd5e1;
}

.lp-home .lp-box.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #ea583c;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

/* Statement Card Header */
.lp-home .lp-statement-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.lp-home .lp-statement-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff1ee;
  color: #ea583c;
  box-shadow: 0 3px 10px rgba(234, 88, 60, 0.15);
}

.lp-home .lp-statement-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.lp-home .lp-statement-tag {
  display: inline-block;
  font-family: var(--font-sans, "Inter", sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea583c;
  background: #fff1ee;
  padding: 4px 10px;
  border-radius: 6px;
}

.lp-home .lp-statement-card-headline {
  font-family: var(--font-display, "Lora", serif);
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 4px 0 0 0;
  line-height: 1.35;
}

/* Unified Brand Themed Variations */
.lp-home .lp-statement-coral .lp-statement-icon-wrap,
.lp-home .lp-statement-teal .lp-statement-icon-wrap,
.lp-home .lp-statement-blue .lp-statement-icon-wrap,
.lp-home .lp-statement-amber .lp-statement-icon-wrap,
.lp-home .lp-statement-purple .lp-statement-icon-wrap { 
  background: #fff1ee; 
  color: #ea583c; 
}

.lp-home .lp-statement-coral .lp-statement-tag,
.lp-home .lp-statement-teal .lp-statement-tag,
.lp-home .lp-statement-blue .lp-statement-tag,
.lp-home .lp-statement-amber .lp-statement-tag,
.lp-home .lp-statement-purple .lp-statement-tag { 
  color: #ea583c; 
  background: #fff1ee; 
}

.lp-home .lp-statement-teal::before,
.lp-home .lp-statement-blue::before,
.lp-home .lp-statement-amber::before,
.lp-home .lp-statement-purple::before { 
  background: linear-gradient(90deg, #ea583c 0%, #f59e0b 50%, #ea583c 100%); 
}

/* Typography inside statements */
.lp-home .lp-statement-lead {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.75;
  color: #1e293b;
  margin: 0 0 10px 0;
}

.lp-home .lp-statement-lead strong {
  color: #0f172a;
}

.lp-home .lp-statement-sub {
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.lp-home .lp-statement-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-home .lp-statement-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.lp-home .lp-check-ico {
  color: #0d9488;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Chip tags */
.lp-home .lp-statement-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.lp-home .lp-chip-tag {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.lp-home .lp-chip-tag:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* Compare Grid */
.lp-home .lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 14px;
}

.lp-home .lp-compare-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 18px;
}

.lp-home .lp-compare-col.featured {
  border-color: #ea583c;
  background: #fff9f7;
}

.lp-home .lp-compare-col h4 {
  font-family: var(--font-display, "Lora", serif);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.lp-home .lp-compare-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Payout Pills Grid */
.lp-home .lp-payout-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.lp-home .lp-payout-pill-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-home .lp-payout-pill-item:hover {
  border-color: #ea583c;
  box-shadow: 0 8px 24px rgba(234, 88, 60, 0.09);
  transform: translateY(-2px);
}

.lp-home .lp-payout-ico {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.lp-home .lp-payout-content strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.lp-home .lp-payout-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Flow Banners */
.lp-home .lp-flow-line,
.lp-home .lp-flow-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  box-sizing: border-box;
}

.lp-home .lp-flow-line::before,
.lp-home .lp-flow-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #ea583c 0%, #3b82f6 50%, #0d9488 100%);
}

.lp-home .lp-flow-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lp-home .lp-flow-caption {
  font-size: 13.5px;
  font-weight: 500;
  color: #64748b;
}

.lp-home .lp-flow-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.lp-home .lp-flow-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.lp-home .step-idx {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ea583c;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-home .lp-flow-arrow {
  color: #ea583c;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Marketplace: one continuous booking path from profile to payout. */
.lp-home .lp-marketplace-flow-section .lp-section-head {
  max-width: 900px;
  margin-bottom: 32px;
}

.lp-home .lp-marketplace-flow {
  --flow-gap: clamp(28px, 3.5vw, 52px);
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 34px 40px 24px;
}

.lp-home .lp-marketplace-flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: var(--flow-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-home .lp-marketplace-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #0f172a;
}

.lp-home .lp-marketplace-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: calc(var(--flow-gap) / -2);
  color: #ea583c;
  font-size: 18px;
  line-height: 1;
  transform: translate(50%, -50%);
}

.lp-home .lp-marketplace-flow-step .step-idx {
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.lp-home .lp-marketplace-flow-step strong,
.lp-home .lp-marketplace-flow-step small {
  display: block;
}

.lp-home .lp-marketplace-flow-step strong {
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.35;
}

.lp-home .lp-marketplace-flow-step small {
  margin-top: 2px;
  color: #64748b;
  font-size: clamp(11px, 0.95vw, 13px);
  line-height: 1.4;
}

.lp-home .lp-flow-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.lp-home .lp-flow-assurance svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #ea583c;
}

@media (max-width: 780px) {
  .lp-home .lp-marketplace-flow {
    --flow-gap: 14px;
    padding: 24px 20px 20px;
  }

  .lp-home .lp-marketplace-flow-list {
    grid-template-columns: 1fr;
  }

  .lp-home .lp-marketplace-flow-step {
    min-height: 52px;
    padding: 4px 0 14px;
  }

  .lp-home .lp-marketplace-flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -7px;
    left: 7px;
    transform: rotate(90deg);
  }

  .lp-home .lp-flow-assurance {
    align-items: flex-start;
    margin-top: 20px;
  }
}

.lp-home .lp-statement-example-box {
  margin-top: 18px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #ea583c;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
}

/* Money Flow Pipeline (Pricing Page Full Width Section) */
.lp-home .lp-money-flow-section {
  padding: 64px 0 72px 0;
  background: #ffffff;
}

.lp-home .lp-money-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin-top: 36px;
  width: 100%;
}

.lp-home .lp-money-step {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.05);
}

.lp-home .lp-money-step:hover {
  border-color: #ea583c;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(234, 88, 60, 0.12);
}

.lp-home .lp-money-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-home .lp-money-step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ea583c;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(234, 88, 60, 0.28);
  flex-shrink: 0;
}

.lp-home .lp-money-step-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 9px;
  border-radius: 6px;
}

.lp-home .lp-money-step-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.lp-home .lp-money-step-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

.lp-home .lp-money-step-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  text-align: center;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.lp-home .lp-money-step-pill.pill-koc {
  background: #ecfdf5;
  color: #059669;
  border-color: #a7f3d0;
}

.lp-home .lp-money-step-pill.pill-fee {
  background: #fff1ee;
  color: #ea583c;
  border-color: #ffdcd6;
}

.lp-home .lp-money-step-pill.pill-affiliate {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.lp-home .lp-money-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea583c;
  width: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.lp-home .lp-money-step-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #ea583c;
}

/* Money Flow Example Calculation Box */
.lp-home .lp-money-calc-box {
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid #e2e8f0;
  border-left: 5px solid #ea583c;
  border-radius: 16px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  width: 100%;
  box-sizing: border-box;
}

.lp-home .lp-money-calc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lp-home .lp-money-calc-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: auto;
}

.lp-home .lp-money-calc-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-home .calc-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  flex: 1;
  min-width: 180px;
}

.lp-home .calc-card.koc {
  background: #f0fdf4;
  border-color: #86efac;
}

.lp-home .calc-card.platform {
  background: #fff7ed;
  border-color: #fdba74;
}

.lp-home .calc-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.4px;
}

.lp-home .calc-num {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.lp-home .calc-card.koc .calc-num {
  color: #059669;
}

.lp-home .calc-card.platform .calc-num {
  color: #c2410c;
}

.lp-home .calc-note {
  font-size: 11.5px;
  font-weight: 600;
  color: #9a3412;
}

.lp-home .calc-note.green {
  color: #059669;
}

.lp-home .calc-sym {
  font-size: 20px;
  font-weight: 800;
  color: #94a3b8;
  flex-shrink: 0;
}

.lp-home .lp-money-calc-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  flex-wrap: wrap;
}

/* Roadmap Grid */
.lp-home .lp-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.lp-home .lp-roadmap-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-home .lp-roadmap-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.lp-home .phase-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ea583c;
  background: #fff1ee;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.lp-home .lp-roadmap-card h4 {
  font-family: var(--font-display, "Lora", serif);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.lp-home .lp-roadmap-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* Support Channels Grid */
.lp-home .lp-support-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.lp-home .lp-channel-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lp-home .chan-ico {
  font-size: 24px;
  margin-bottom: 4px;
}

.lp-home .lp-channel-item strong {
  font-size: 14px;
  color: #0f172a;
}

.lp-home .lp-channel-item p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   14. PRICING TIERS CARDS (/bang-gia)
   ========================================================================== */
.lp-home .lp-pricing-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.lp-home .lp-pricing-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.lp-home .lp-pricing-card h3 {
  font-family: var(--font-display, "Lora", serif);
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.lp-home .lp-pricing-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.lp-home .lp-pricing-card.featured {
  border: 2px solid #ea583c;
  background: linear-gradient(180deg, #fff9f7 0%, #ffffff 100%);
  box-shadow: 0 8px 30px rgba(234, 88, 60, 0.14);
}

.lp-home .lp-pricing-card.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(234, 88, 60, 0.22);
}

.lp-home .badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ea583c 0%, #f97316 100%);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(234, 88, 60, 0.35);
  white-space: nowrap;
}

/* ==========================================================================
   15. RECRUIT & LEADER CARD (/cong-dong)
   ========================================================================== */
.lp-home .lp-recruit-card {
  background: linear-gradient(145deg, #fff7f4 0%, #ffffff 100%);
  border: 1.5px solid #fed7aa;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(234, 88, 60, 0.08);
}

.lp-home .lp-recruit-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 20px 0;
}

.lp-home .lp-recruit-card .btn {
  align-self: flex-start;
}

/* ==========================================================================
   16. ACCORDION FAQ (/ho-tro, /koc, /ai-clone)
   ========================================================================== */
.lp-home .lp-faq-group-title {
  font-family: var(--font-display, "Lora", serif);
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin: 32px 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-home .lp-faq-group-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #ea583c;
}

.lp-home .lp-acc-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-home .lp-acc-item:hover {
  border-color: #cbd5e1;
}

.lp-home .lp-acc-item.open {
  border-color: #ea583c;
  box-shadow: 0 4px 16px rgba(234, 88, 60, 0.08);
}

.lp-home .lp-acc-q {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.15s ease;
}

.lp-home .lp-acc-q:hover {
  color: #ea583c;
}

.lp-home .lp-acc-item.open .lp-acc-q {
  color: #ea583c;
}

.lp-home .lp-acc-q::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lp-home .lp-acc-item.open .lp-acc-q::after {
  content: "−";
  color: #ea583c;
  font-weight: 700;
}

.lp-home .lp-acc-a {
  display: none;
  padding: 0 22px 18px 22px;
  font-size: 14.5px;
  line-height: 1.68;
  color: #475569;
}

.lp-home .lp-acc-item.open .lp-acc-a {
  display: block;
}

/* ==========================================================================
   17. SUPPORT SEARCH BOX & CONTACT FORM (/ho-tro, /doanh-nghiep, /bang-gia)
   ========================================================================== */
.lp-home .lp-search-box {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.lp-home .lp-search-box input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  backdrop-filter: blur(12px);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.lp-home .lp-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.lp-home .lp-search-box input:focus {
  border-color: #ea583c;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 20px rgba(234, 88, 60, 0.3);
}

.lp-home .lp-search-box::before {
  content: "🔍";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.8;
  pointer-events: none;
}

/* Contact Form */
.lp-home .lp-contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.lp-home .lp-contact-wrap .lp-card {
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
}

.lp-home .lp-contact-form .field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-home .lp-contact-form label {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
}

.lp-home .lp-contact-form input,
.lp-home .lp-contact-form textarea {
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.lp-home .lp-contact-form input:focus,
.lp-home .lp-contact-form textarea:focus {
  border-color: #ea583c;
  box-shadow: 0 0 0 3px rgba(234, 88, 60, 0.12);
}

.lp-home .lp-contact-form button[type="submit"] {
  background: #ea583c;
  color: #ffffff;
  border: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(234, 88, 60, 0.35);
  transition: all 0.2s ease;
}

.lp-home .lp-contact-form button[type="submit"]:hover {
  background: #f36c52;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(234, 88, 60, 0.45);
}

.lp-home .lp-contact-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.lp-home .lp-contact-success .ico {
  font-size: 38px;
  margin-bottom: 12px;
}

/* Quote CTA Button */
.lp-home .lp-quote-cta-wrap {
  text-align: center;
  margin: 20px 0 28px 0;
}

.lp-home .lp-quote-cta {
  background: #ffffff;
  border: 2px solid #ea583c;
  color: #ea583c;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lp-home .lp-quote-cta:hover {
  background: #ea583c;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(234, 88, 60, 0.3);
}

/* ==========================================================================
   18. HERO TRUST / EXTRA STRIP
   ========================================================================== */
.lp-home .lp-hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
}

.lp-home .lp-hero-trust-bar span.pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Logo responsive swap via <picture> element --- */
@media (max-width: 1024px) and (min-width: 769px) {
  .lp-home .lp-logo {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    flex: 0 0 140px !important;
  }
  .lp-home .lp-logo picture,
  .lp-home .lp-logo img {
    width: 140px !important;
    max-width: 140px !important;
    height: 36px !important;
  }
}

@media (max-width: 768px) {
  .lp-home .lp-logo {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    flex: 0 0 40px !important;
    height: 40px !important;
    margin-right: 10px !important;
  }
  .lp-home .lp-logo picture,
  .lp-home .lp-logo img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    object-fit: contain !important;
  }
}

/* --- Hero centering on tablet --- */
@media (max-width: 1024px) {
  .lp-home .lp-hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .lp-home .lp-hero-eyebrow-wrap {
    justify-content: center;
  }
  .lp-home .lp-hero-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
  }
  .lp-home .lp-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-home .lp-hero-cta {
    justify-content: center;
  }
  .lp-home .lp-hero-trust-bar {
    justify-content: center;
  }
}

/* On mobile keep hero left-aligned for readability */
@media (max-width: 768px) {
  .lp-home .lp-hero-content {
    text-align: left;
  }
  .lp-home .lp-hero-eyebrow-wrap {
    justify-content: flex-start;
  }
  .lp-home .lp-hero-sub {
    margin-left: 0;
    margin-right: 0;
  }
  .lp-home .lp-hero-cta {
    justify-content: flex-start;
  }
  .lp-home .lp-hero-trust-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 1200px) {
  .lp-home .lp-grid-5,
  .lp-home .lp-steps.n5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .lp-home .lp-hero-home-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-home .lp-hero-visual img {
    max-width: 520px;
  }
  .lp-home .lp-hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .lp-home .lp-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-home .lp-campaign-desk-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-home .lp-home-proof .lp-grid-4,
  .lp-home .lp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-home .lp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-home .lp-pricing-grid,
  .lp-home .lp-grid-4.lp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-home .lp-roadmap-grid,
  .lp-home .lp-support-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-home .lp-money-pipeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .lp-home .lp-money-step-arrow {
    display: none;
  }
  .lp-home .lp-footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lp-home .lp-nav {
    display: none;
  }
  /* The off-canvas drawer in styles/landing.css only animates via transform;
     without an explicit display for .open, this display:none keeps the mobile
     menu permanently hidden after tapping the burger. */
  .lp-home .lp-nav.open {
    display: flex;
  }
  .lp-home .lp-burger {
    display: block;
  }
  .lp-home .lp-hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-home .lp-hero-stat-item {
    padding: 6px 0;
  }
  .lp-home .lp-audience-cards-grid {
    grid-template-columns: 1fr;
  }
  .lp-home .lp-home-proof .lp-grid-4,
  .lp-home .lp-grid-4,
  .lp-home .lp-grid-3,
  .lp-home .lp-grid-2,
  .lp-home .lp-grid-5,
  .lp-home .lp-steps.n5 {
    grid-template-columns: 1fr;
  }
  .lp-home .lp-statement-card,
  .lp-home .lp-flow-banner {
    padding: 22px 18px;
  }
  .lp-home .lp-payout-pills-grid,
  .lp-home .lp-roadmap-grid,
  .lp-home .lp-support-channels-grid,
  .lp-home .lp-compare-grid {
    grid-template-columns: 1fr;
  }
  .lp-home .lp-money-pipeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lp-home .lp-money-step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 16px;
    margin: -2px 0;
  }
  .lp-home .lp-money-step-arrow svg {
    transform: rotate(90deg);
  }
  .lp-home .lp-money-calc-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-home .lp-money-calc-flow .calc-sym {
    text-align: center;
    transform: rotate(90deg);
    font-size: 14px;
    margin: -4px 0;
  }
  .lp-home .lp-flow-steps-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .lp-home .lp-flow-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 2px 0;
  }
  .lp-home .lp-home-stories .lp-grid-2 {
    grid-template-columns: 1fr;
  }
  .lp-home .lp-footer-cols {
    grid-template-columns: 1fr;
  }
  .lp-home .lp-cta-final .lp-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .lp-home .lp-cta-final .btn {
    width: 100%;
  }
  .lp-home .lp-contact-wrap .lp-card {
    padding: 24px 18px;
  }
}
