/* ============================================================
   TCONGS — landing.css
   High-Converting Landing Page Design System & Stylesheet
   ============================================================ */

/* ── Typography Override & Variables ── */
:root {
  --clr-brand-blue: #28558A;
  --clr-brand-blue-dark: #1a3c66;
  --clr-brand-orange: #ff7a00;
  --clr-brand-orange-hover: #e56d00;
  --clr-brand-green: #10b981;
  --clr-brand-red: #ef4444;
  --clr-bg-light: #f8fafc;
  --clr-bg-accent: #f1f5f9;
  --clr-text-dark: #0f172a;
  --clr-text-slate: #475569;
  --clr-text-muted: #64748b;
  --clr-border: #e2e8f0;
  --clr-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --clr-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --clr-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-lp: 'Outfit', sans-serif;
  --transition-lp: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base Styles ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lp-body {
  font-family: var(--font-lp);
  background-color: #ffffff;
  color: var(--clr-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-section-padding {
  padding: 80px 0;
}

.lp-text-center { text-align: center; }
.lp-text-brand { color: var(--clr-brand-blue); }
.lp-text-orange { color: var(--clr-brand-orange); }

/* Buttons */
.lp-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-brand-orange);
  color: #ffffff;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-lp);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}
.lp-btn-orange:hover {
  background-color: var(--clr-brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--clr-brand-blue);
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  border: 2px solid var(--clr-brand-blue);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-lp);
  text-decoration: none;
}
.lp-btn-outline:hover {
  background-color: var(--clr-brand-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.lp-btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-brand-blue);
  color: #ffffff;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-lp);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(40, 85, 138, 0.3);
}
.lp-btn-blue:hover {
  background-color: var(--clr-brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 85, 138, 0.4);
}

/* ── HEADER ── */
.lp-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--clr-shadow-sm);
  height: 80px;
  display: flex;
  align-items: center;
}
.lp-header .lp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-header-logo img {
  height: 50px;
  width: auto;
  display: block;
}
.lp-header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--clr-text-dark);
  font-weight: 600;
  transition: var(--transition-lp);
}
.lp-header-cta:hover {
  color: var(--clr-brand-blue);
}
.lp-header-cta-icon {
  background-color: var(--clr-bg-accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-brand-blue);
  font-size: 1.1rem;
}
.lp-header-cta-text {
  display: flex;
  flex-direction: column;
}
.lp-header-cta-text span:first-child {
  font-size: 0.75rem;
  color: var(--clr-text-slate);
  font-weight: 500;
}
.lp-header-cta-text span:last-child {
  font-size: 1.05rem;
  font-weight: 700;
}
.lp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.lp-hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--clr-text-dark);
  transition: var(--transition-lp);
}

/* Mobile Nav sliding menu */
.lp-mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--clr-border);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--clr-shadow-md);
  z-index: 999;
}
.lp-mobile-nav.open { display: flex; }

/* ── HERO SECTION ── */
.lp-hero {
  background: linear-gradient(135deg, #f0f5fa 0%, #ffffff 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lp-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-hero-badge {
  background-color: rgba(40, 85, 138, 0.08);
  color: var(--clr-brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.lp-hero-left h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--clr-text-dark);
  margin: 0 0 20px;
}
.lp-hero-left h1 span.orange { color: #ff9900; }
.lp-hero-left h1 span.blue { color: #2874f0; }
.lp-hero-left h1 span.brand { color: var(--clr-brand-blue); }

.lp-hero-sub {
  font-size: 1.15rem;
  color: var(--clr-text-slate);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Trust Indicators */
.lp-hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 35px;
}
.lp-hero-trust-card {
  background-color: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--clr-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lp-hero-trust-icon {
  font-size: 1.5rem;
  color: var(--clr-brand-blue);
}
.lp-hero-trust-card strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-brand-blue);
  display: block;
}
.lp-hero-trust-card span {
  font-size: 0.75rem;
  color: var(--clr-text-slate);
  font-weight: 600;
  line-height: 1.2;
}

.lp-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.lp-hero-actions a {
  flex: 1;
  min-width: 220px;
}
.lp-hero-stars {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-slate);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-hero-stars span {
  color: #fb923c;
  letter-spacing: 2px;
}

/* Lead Form Card */
.lp-hero-right {
  display: flex;
  justify-content: flex-end;
}
.lp-form-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--clr-shadow-lg);
  border: 1px solid var(--clr-border);
  padding: 32px;
  width: 100%;
  max-width: 440px;
}
.lp-form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-brand-blue);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.2;
}
.lp-form-card p {
  font-size: 0.9rem;
  color: var(--clr-text-slate);
  text-align: center;
  margin: 0 0 24px;
}

.lp-form-group {
  position: relative;
  margin-bottom: 16px;
}
.lp-form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.lp-form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-lp);
  font-size: 0.95rem;
  color: var(--clr-text-dark);
  background-color: #ffffff;
  outline: none;
  transition: var(--transition-lp);
}
.lp-form-input:focus {
  border-color: var(--clr-brand-blue);
  box-shadow: 0 0 0 3px rgba(40, 85, 138, 0.15);
}
.lp-form-input.error {
  border-color: var(--clr-brand-red);
  background-color: rgba(239, 68, 68, 0.02);
}

.lp-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.lp-form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}
.lp-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 14px;
  font-weight: 600;
}
.lp-form-footer span {
  color: var(--clr-brand-green);
  font-size: 1rem;
}

/* ── MARKETPLACES SECTION ── */
.lp-marketplaces {
  background-color: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid var(--clr-border);
}
.lp-marketplaces h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-brand-blue);
  margin: 0 0 35px;
}
.lp-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.lp-logo-card {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: var(--clr-shadow-sm);
  transition: var(--transition-lp);
}
.lp-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--clr-shadow-md);
}
.lp-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lp-marketplaces-sub {
  font-size: 0.95rem;
  color: var(--clr-text-slate);
  font-weight: 600;
}

/* ── CHALLENGES SECTION ── */
.lp-challenges {
  background-color: var(--clr-bg-light);
}
.lp-challenges h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-brand-blue);
  margin: 0 0 45px;
}
.lp-challenges-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.lp-challenge-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 35px;
  box-shadow: var(--clr-shadow-md);
  border-top: 4px solid var(--clr-brand-red);
}
.lp-challenge-box.solutions {
  border-top-color: var(--clr-brand-green);
}
.lp-challenge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-challenge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-dark);
}
.lp-challenge-list li span {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}
.lp-challenge-list.red span { color: var(--clr-brand-red); }
.lp-challenge-list.green span { color: var(--clr-brand-green); }

.lp-challenges-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-challenges-arrow {
  background-color: var(--clr-brand-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(40, 85, 138, 0.3);
}

.lp-challenges-mobile-arrow {
  display: none;
  font-size: 1.8rem;
  color: var(--clr-brand-blue);
  margin: 16px 0;
  text-align: center;
}

/* ── SERVICES SECTION ── */
.lp-services {
  background-color: #ffffff;
}
.lp-services h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-brand-blue);
  margin: 0 0 45px;
}
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-service-card {
  background-color: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--clr-shadow-sm);
  transition: var(--transition-lp);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.lp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--clr-shadow-lg);
  border-bottom-color: var(--clr-brand-blue);
}
.lp-service-icon-wrap {
  background-color: rgba(40, 85, 138, 0.08);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-brand-blue);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.lp-service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-brand-blue);
  margin: 0 0 12px;
}
.lp-service-card p {
  font-size: 0.95rem;
  color: var(--clr-text-slate);
  line-height: 1.5;
  margin: 0;
}

/* ── RESULTS SECTION ── */
.lp-results {
  background-color: #0f172a;
  color: #ffffff;
  padding: 50px 0;
}
.lp-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.lp-result-card {
  text-align: center;
  padding: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}
.lp-results-grid div:first-child .lp-result-card {
  border-left: none;
}
.lp-result-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fb923c;
  line-height: 1.2;
}
.lp-result-txt {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 600;
}
.lp-results-disc {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
}

/* ── TESTIMONIALS SECTION ── */
.lp-testimonials {
  background-color: #ffffff;
}
.lp-testimonials h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-brand-blue);
  margin: 0 0 45px;
}
.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.lp-testimonial-card {
  background-color: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--clr-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-testimonial-text {
  font-size: 1rem;
  color: var(--clr-text-slate);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.lp-testimonial-text::before {
  content: '“';
  font-size: 3.5rem;
  color: rgba(40, 85, 138, 0.1);
  position: absolute;
  top: -24px;
  left: -12px;
  font-family: Georgia, serif;
}
.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--clr-bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-brand-blue);
  border: 2px solid #ffffff;
  box-shadow: var(--clr-shadow-sm);
}
.lp-testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin: 0;
}
.lp-testimonial-info span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}
.lp-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.lp-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-border);
  cursor: pointer;
  transition: var(--transition-lp);
}
.lp-carousel-dot.active {
  background-color: var(--clr-brand-blue);
  width: 24px;
  border-radius: 99px;
}

/* ── FAQ SECTION ── */
.lp-faq {
  background-color: var(--clr-bg-light);
}
.lp-faq h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-brand-blue);
  margin: 0 0 45px;
}
.lp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-faq-item {
  background-color: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  box-shadow: var(--clr-shadow-sm);
  overflow: hidden;
  transition: var(--transition-lp);
}
.lp-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-lp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-faq-icon {
  font-size: 1.2rem;
  color: var(--clr-brand-blue);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.25s ease;
}
.lp-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--clr-text-slate);
  line-height: 1.6;
}
.lp-faq-item.active {
  border-color: var(--clr-brand-blue);
}
.lp-faq-item.active .lp-faq-answer {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), opacity 0.3s ease;
}
.lp-faq-item.active .lp-faq-icon {
  transform: rotate(45deg);
}

/* ── FINAL CTA SECTION ── */
.lp-final-cta {
  background-color: #ffffff;
}
.lp-cta-card {
  background: linear-gradient(135deg, #0d253f 0%, #1c3d5a 100%);
  border-radius: 16px;
  padding: 60px 40px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--clr-shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.lp-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.lp-cta-card p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin: 0 0 35px;
}
.lp-cta-card .lp-btn-orange {
  margin-bottom: 30px;
}
.lp-cta-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-cta-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
}
.lp-cta-benefits li span {
  color: var(--clr-brand-orange);
  font-weight: bold;
}

/* ── FLOATING WHATSAPP CTA ── */
.lp-float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  font-size: 2rem;
  transition: var(--transition-lp);
  animation: waPulse 2s infinite;
}
.lp-float-wa:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── THANK YOU MODAL POPUP ── */
.lp-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.lp-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.lp-modal-box {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: var(--clr-shadow-lg);
  padding: 40px 30px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.lp-modal.open .lp-modal-box {
  transform: translateY(0);
}
.lp-modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-brand-green);
  font-size: 2.2rem;
  margin: 0 auto 24px;
}
.lp-modal h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-brand-blue);
  margin: 0 0 12px;
}
.lp-modal p {
  font-size: 1rem;
  color: var(--clr-text-slate);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.lp-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--clr-border);
  padding: 60px 0 30px;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 0.8fr;
  gap: 32px;
  margin-bottom: 40px;
}
.lp-footer-brand h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-brand-blue);
  margin: 0 0 16px;
}
.lp-footer-brand p {
  font-size: 0.9rem;
  color: var(--clr-text-slate);
  line-height: 1.6;
  margin: 0;
}
.lp-footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-footer-links a {
  text-decoration: none;
  color: var(--clr-text-slate);
  font-size: 0.9rem;
  transition: var(--transition-lp);
  font-weight: 500;
}
.lp-footer-links a:hover {
  color: var(--clr-brand-blue);
}
.lp-footer-divider {
  border: 0;
  border-top: 1px solid var(--clr-border);
  margin: 0 0 30px;
}
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.lp-footer-bottom p { margin: 0; }

/* ── RESPONSIVE STYLING ── */

@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-hero-left {
    align-items: center;
    text-align: center;
  }
  .lp-hero-sub {
    margin-bottom: 24px;
  }
  .lp-hero-trust-grid {
    max-width: 600px;
  }
  .lp-hero-right {
    justify-content: center;
  }
  .lp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .lp-footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .lp-section-padding {
    padding: 60px 0;
  }
  .lp-header-cta {
    display: none;
  }
  .lp-hamburger {
    display: flex;
  }
  .lp-hero-left h1 {
    font-size: 2.2rem;
  }
  .lp-hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .lp-challenges h2,
  .lp-services h2,
  .lp-testimonials h2,
  .lp-faq h2,
  .lp-cta-card h2 {
    font-size: 1.8rem;
  }
  .lp-challenges-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lp-challenges-divider {
    display: none;
  }
  .lp-challenges-mobile-arrow {
    display: block;
  }
  .lp-services-grid {
    grid-template-columns: 1fr;
  }
  .lp-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .lp-result-card {
    border-left: none;
    padding: 10px;
  }
  .lp-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .lp-faq-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .lp-hero-left h1 {
    font-size: 1.9rem;
  }
  .lp-hero-actions {
    flex-direction: column;
  }
  .lp-hero-actions a {
    width: 100%;
  }
  .lp-form-card {
    padding: 24px 16px;
  }
  .lp-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-results-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-brand {
    grid-column: span 1;
  }
  .lp-cta-card {
    padding: 40px 16px;
  }
  .lp-challenge-box {
    padding: 24px 16px;
  }
  .lp-testimonial-card {
    padding: 24px 16px;
  }
}

/* ============================================================
   MARKETPLACE GROWTH — FINAL NAV / FOOTER / CHATBOT FIX
   ============================================================ */
.lp-float-wa { display:none !important; animation:none !important; }

.lp-header { gap:14px; }
.lp-header .lp-header-cta { margin-left:auto; }
.lp-header-wa {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:40px;
  padding:9px 14px;
  border-radius:8px;
  background:#25d366;
  color:#fff !important;
  text-decoration:none !important;
  font-size:.88rem;
  font-weight:750;
  box-shadow:0 5px 16px rgba(37,211,102,.20);
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.lp-header-wa:hover {
  background:#20ba5a;
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(37,211,102,.28);
}
.lp-btn-whatsapp {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#25d366;
  color:#fff !important;
  font-weight:700;
  padding:16px 28px;
  border-radius:8px;
  border:2px solid #25d366;
  font-size:1rem;
  cursor:pointer;
  transition:var(--transition-lp);
  text-decoration:none !important;
  box-shadow:0 4px 14px rgba(37,211,102,.20);
}
.lp-btn-whatsapp:hover {
  background:#20ba5a;
  border-color:#20ba5a;
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:0 7px 18px rgba(37,211,102,.28);
}
.lp-hero-actions .lp-btn-whatsapp { flex:1; min-width:220px; }

#site-footer { display:block; width:100%; }
#site-footer .footer-corporate { width:100%; display:block; }
#site-footer .footer-corporate > .container {
  width:100%; max-width:1240px; margin:0 auto;
  padding-left:20px; padding-right:20px;
}
#site-footer .footer-corporate ul { list-style:none; padding:0; margin:0; }

@media (max-width:768px) {
  .lp-header-wa { display:none; }
  .lp-hero-actions { width:100%; }
  .lp-hero-actions .lp-btn-whatsapp { width:100%; min-width:0; }
}

/* ============================================================
   GROWTH NAVBAR — FINAL BALANCED ARRANGEMENT
   ============================================================ */
.lp-header {
  width: 100% !important;
  box-sizing: border-box !important;
}
.lp-header > .lp-container {
  width: min(100% - 40px, 1320px) !important;
  max-width: 1320px !important;
  margin-inline: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}
.lp-header-logo {
  flex: 0 0 auto !important;
}
.lp-header-logo img {
  width: auto !important;
  height: 50px !important;
  max-width: 205px !important;
  object-fit: contain !important;
}
.lp-header-cta {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  min-width: 210px !important;
}
.lp-header-wa {
  flex: 0 0 auto !important;
  min-width: 118px !important;
  white-space: nowrap !important;
}
.lp-hamburger {
  flex: 0 0 auto !important;
}
.lp-mobile-nav {
  box-sizing: border-box !important;
}
@media (max-width: 900px) {
  .lp-header > .lp-container {
    width: calc(100% - 28px) !important;
    gap: 10px !important;
  }
  .lp-header-cta {
    min-width: 0 !important;
  }
  .lp-header-wa {
    min-width: 105px !important;
    padding-inline: 10px !important;
  }
}
@media (max-width: 768px) {
  .lp-header > .lp-container {
    width: calc(100% - 24px) !important;
    justify-content: space-between !important;
  }
  .lp-header-cta,
  .lp-header-wa {
    display: none !important;
  }
  .lp-header-logo img {
    height: 44px !important;
    max-width: 180px !important;
  }
  .lp-hamburger {
    margin-left: auto !important;
  }
}

/* ============================================================
   MARKETPLACE GROWTH — MOBILE RESPONSIVE CLEANUP
   ============================================================ */
@media screen and (max-width: 768px) {
  .lp-hero {
    padding: 34px 0 46px !important;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .lp-hero-left {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }

  .lp-hero-left h1 {
    width: 100% !important;
    font-size: clamp(2rem, 8.4vw, 2.55rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  .lp-hero-sub {
    max-width: 620px !important;
    font-size: .98rem !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }

  .lp-hero-trust-grid {
    width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  .lp-hero-trust-card {
    min-width: 0 !important;
    padding: 13px 8px !important;
  }

  .lp-hero-actions {
    width: 100% !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 0 !important;
  }

  .lp-hero-actions a {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .lp-hero-right,
  .lp-form-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .lp-form-card {
    padding: 20px 16px !important;
  }

  /* Mobile dropdown opens directly below the fixed header. */
  .lp-mobile-nav {
    top: 64px !important;
    max-height: calc(100vh - 64px) !important;
    overflow-y: auto !important;
    padding: 14px !important;
    gap: 10px !important;
  }

  .lp-mobile-nav > a {
    min-height: 46px !important;
    width: 100% !important;
    justify-content: center !important;
  }
}

@media screen and (max-width: 420px) {
  .lp-hero {
    padding-top: 28px !important;
  }

  .lp-hero-left h1 {
    font-size: clamp(1.8rem, 8.8vw, 2.2rem) !important;
  }

  .lp-hero-trust-card strong {
    font-size: .78rem !important;
  }

  .lp-hero-trust-card > span:last-child {
    font-size: .66rem !important;
  }
}

/* ============================================================
   MARKETPLACE GROWTH — FINAL COMPACT TYPOGRAPHY
   Reduce oversized hero/content text without changing layout.
   ============================================================ */

/* Desktop */
.lp-hero-left h1 {
  font-size: clamp(2.25rem, 3.2vw, 3rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 16px !important;
}
.lp-hero-sub {
  font-size: 1rem !important;
  line-height: 1.55 !important;
  max-width: 700px !important;
}
.lp-hero-trust-card strong {
  font-size: 1rem !important;
}
.lp-hero-trust-card span {
  font-size: .72rem !important;
}

/* Other Growth section headings */
.lp-challenges h2,
.lp-services h2,
.lp-testimonials h2,
.lp-faq h2,
.lp-cta-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.15rem) !important;
  line-height: 1.15 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .lp-hero-left h1 {
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 12px !important;
  }

  .lp-hero-sub {
    font-size: .9rem !important;
    line-height: 1.5 !important;
  }

  .lp-hero-trust-card strong {
    font-size: .82rem !important;
  }

  .lp-hero-trust-card span {
    font-size: .65rem !important;
  }

  .lp-challenges h2,
  .lp-services h2,
  .lp-testimonials h2,
  .lp-faq h2,
  .lp-cta-card h2 {
    font-size: 1.55rem !important;
  }
}

@media (max-width: 420px) {
  .lp-hero-left h1 {
    font-size: clamp(1.55rem, 7.4vw, 1.9rem) !important;
  }

  .lp-hero-sub {
    font-size: .86rem !important;
  }
}

/* ============================================================
   MARKETPLACE GROWTH — RESULTS CARDS
   White cards + TCONGS dark-blue text + compact typography
   ============================================================ */
.lp-results-grid .lp-result-card {
  background: #ffffff !important;
  border: 1px solid rgba(40,85,138,.18) !important;
  border-left: 1px solid rgba(40,85,138,.18) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(13,49,82,.08) !important;
  padding: 18px 14px !important;
  min-height: 118px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.lp-results-grid .lp-result-num {
  font-size: 1.55rem !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  color: #0b4f8a !important;
  -webkit-text-fill-color: #0b4f8a !important;
  text-align: center !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

.lp-results-grid .lp-result-txt {
  margin-top: 6px !important;
  font-size: .78rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: #0b4f8a !important;
  -webkit-text-fill-color: #0b4f8a !important;
  text-align: center !important;
}

.lp-results-grid .lp-result-card:hover {
  background: #ffffff !important;
  border-color: rgba(40,85,138,.30) !important;
  transform: translateY(-2px) !important;
  transition: transform .2s ease, border-color .2s ease !important;
}

.lp-results-disc {
  font-size: .68rem !important;
  line-height: 1.45 !important;
}

@media (max-width: 900px) {
  .lp-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .lp-results-grid .lp-result-card {
    min-height: 104px !important;
    padding: 15px 10px !important;
  }

  .lp-results-grid .lp-result-num {
    font-size: 1.3rem !important;
  }

  .lp-results-grid .lp-result-txt {
    font-size: .72rem !important;
  }
}

@media (max-width: 520px) {
  .lp-results-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .lp-results-grid .lp-result-card {
    min-height: 92px !important;
    padding: 12px 8px !important;
  }

  .lp-results-grid .lp-result-num {
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
  }

  .lp-results-grid .lp-result-txt {
    margin-top: 4px !important;
    font-size: .64rem !important;
  }

  .lp-results-disc {
    font-size: .6rem !important;
    padding-inline: 6px !important;
  }
}

@media (max-width: 360px) {
  .lp-results-grid .lp-result-num {
    font-size: .96rem !important;
  }

  .lp-results-grid .lp-result-txt {
    font-size: .58rem !important;
  }
}

/* FINAL GROWTH MOBILE/DESKTOP COMPACT PASS */
.lp-hero-left h1 { font-size: clamp(2.1rem, 3vw, 2.7rem) !important; line-height:1.08 !important; }
.lp-hero-sub { font-size:.95rem !important; line-height:1.5 !important; }
.lp-hero-trust-card { padding:12px !important; }
.lp-hero-trust-card strong { font-size:.95rem !important; }
.lp-hero-trust-card span { font-size:.68rem !important; }
.lp-service-card { padding:18px !important; }
.lp-service-card h3 { font-size:1rem !important; }
.lp-service-card p { font-size:.78rem !important; }
.lp-challenges h2,.lp-services h2,.lp-testimonials h2,.lp-faq h2,.lp-cta-card h2 { font-size:clamp(1.55rem,2.2vw,2rem) !important; }
.lp-results-grid .lp-result-card { padding:16px 12px !important; min-height:108px !important; }
.lp-results-grid .lp-result-num { font-size:1.45rem !important; }
.lp-results-grid .lp-result-txt { font-size:.74rem !important; }
@media (max-width:768px){
  .lp-hero-left h1 { font-size:clamp(1.55rem,6.6vw,2rem) !important; }
  .lp-hero-sub { font-size:.86rem !important; }
  .lp-hero-trust-card { padding:10px 8px !important; }
  .lp-hero-trust-card strong { font-size:.76rem !important; }
  .lp-hero-trust-card span { font-size:.61rem !important; }
  .lp-service-card { padding:14px !important; }
  .lp-service-card h3 { font-size:.88rem !important; }
  .lp-service-card p { font-size:.7rem !important; }
  .lp-challenges h2,.lp-services h2,.lp-testimonials h2,.lp-faq h2,.lp-cta-card h2 { font-size:1.45rem !important; }
  .lp-results-grid .lp-result-card { min-height:90px !important; padding:11px 8px !important; }
  .lp-results-grid .lp-result-num { font-size:1.02rem !important; }
  .lp-results-grid .lp-result-txt { font-size:.62rem !important; }
}
