﻿/* ============================================
   LP4 Landing Page Styles
   ============================================ */

/* --- General Reset --- */
.lp4-page {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

.lp4-page img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   HEADER
   ============================================ */
.lp4-header {
  padding: 16px 0;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp4-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp4-logo img {
  height: 40px;
  width: auto;
}

.lp4-header-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 24px;
  background: #00BCD4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lp4-header-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
  pointer-events: none;
}

.lp4-header-btn:hover {
  background: #0097a7;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,188,212,0.35);
  color: #fff;
}

.lp4-header-btn:hover::before {
  animation: lp4-shine 1.5s ease-out infinite;
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp4-hero {
  padding: 60px 0 0;
  background: #ffffff;
  background-image: none;
  position: relative;
  overflow: hidden;
}

.lp4-hero-row {
  position: relative;
  min-height: 0;
}

/* Badge */
.lp4-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdfc;
  border: 1px solid #ccfbf1;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #0d9488;
  margin-bottom: 24px;
}

.lp4-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00BCD4;
  flex-shrink: 0;
  display: inline-block;
}

/* Title */
.lp4-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.lp4-highlight {
  color: #00BCD4;
  font-style: normal;
}

/* Text */
.lp4-hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 16px;
  max-width: 520px;
}

/* Trust Row */
.lp4-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.lp4-avatar-stack {
  display: flex;
  align-items: center;
}

.lp4-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.lp4-avatar:first-child {
  margin-left: 0;
}

.lp4-avatar-count {
  background: #00BCD4;
  color: #fff;
  font-size: 12px;
}

.lp4-trust-label {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.lp4-stars {
  display: flex;
  gap: 3px;
  margin-left: 10px;
}

.lp4-star {
  color: #fb923c;
  font-size: 16px;
}

/* CTA Buttons */
.lp4-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lp4-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  background: #ff6f61;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,111,97,0.3);
}

.lp4-btn-primary::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
  pointer-events: none;
}

.lp4-btn-primary:hover {
  background: #f75545;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,111,97,0.45);
  color: #fff;
}

.lp4-btn-primary:hover::before {
  animation: lp4-shine 1.5s ease-out infinite;
}

.lp4-btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  background: #fff;
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #cbd5e1;
  cursor: pointer;
}

.lp4-btn-outline:hover {
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  color: #0f172a;
}

/* Note */
.lp4-hero-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  padding-left: 5px;
}

/* Hero Image */
.lp4-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
  margin-left: auto;
}

@media (min-width: 992px) {
  .lp4-hero {
    background-image: url('/assets/img/lp4/hero.webp');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: min(52vw, 820px) auto;
  }

  .lp4-hero-row {
    min-height: 640px;
  }

  .lp4-hero-content-col {
    flex: 0 0 58%;
    max-width: 58%;
  }

  .lp4-hero-img-col {
    display: none;
  }
}

@media (min-width: 1400px) {
  .lp4-hero {
    background-size: min(54vw, 900px) auto;
  }
}

/* ============================================
   DUAL PARTNER MARQUEES (list/*.png — LTR + RTL)
   ============================================ */
.lp4-partner-marquees {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: #fff;
}

.lp4-partner-marquee {
  padding: 18px 0;
  background: #fff;
}

.lp4-partner-marquee--left {
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.lp4-partner-marquee--right {
  border-bottom: 1px solid #eef2f6;
}

.lp4-partner-marquee-view {
  overflow: hidden;
  padding: 0 clamp(20px, 4vw, 56px);
}

.lp4-partner-marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.lp4-partner-marquee-inner--to-left {
  animation: lp4-marquee-to-left 50s linear infinite;
}

.lp4-partner-marquee-inner--to-right {
  animation: lp4-marquee-to-left 44s linear infinite reverse;
}

.lp4-partner-marquee-inner:hover {
  animation-play-state: paused;
}

.lp4-partner-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding-right: clamp(40px, 7vw, 96px);
}

.lp4-partner-marquee-group img {
  height: clamp(36px, 4.2vw, 48px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.94;
  user-select: none;
  pointer-events: none;
}

@keyframes lp4-marquee-to-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .lp4-partner-marquee {
    padding: 14px 0;
  }

  .lp4-partner-marquee-view {
    padding: 0 16px;
  }

  .lp4-partner-marquee-group img {
    height: 28px;
    max-width: 110px;
  }

  .lp4-partner-marquee-group {
    gap: 32px;
    padding-right: 32px;
  }

  .lp4-partner-marquee-inner--to-left {
    animation-duration: 38s;
  }

  .lp4-partner-marquee-inner--to-right {
    animation-duration: 34s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp4-partner-marquee-inner--to-left,
  .lp4-partner-marquee-inner--to-right {
    animation: none !important;
    transform: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.lp4-footer {
  background: #1a1a2e;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.lp4-footer p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

/* ============================================
   WHY CHOOSE US (centered intro, peach badge + star, 2×2 cards)
   ============================================ */
.lp4-why {
  padding: 100px 0 60px;
  background: #ffffff;
}

.lp4-why-intro {
  text-align: center;
  margin-bottom: 8px;
}

.lp4-why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0ed;
  border: 1px solid #ffd5cc;
  border-radius: 999px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 16px;
}

.lp4-why-badge-star {
  font-size: 11px;
  color: #dc2626;
  line-height: 1;
}

.lp4-why-heading {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp4-why .row {
  margin-top: 1rem;
  text-align: left;
}

.lp4-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0ed;
  border: 1px solid #ffd5cc;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #e64a19;
  margin-bottom: 16px;
}

.lp4-badge-icon {
  font-size: 11px;
}

.lp4-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.2;
}

.lp4-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
  text-align: left;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.lp4-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp4-why-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.lp4-why-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SATISFACTION GUARANTEE
   ============================================ */
.lp4-guarantee {
  padding: 100px 0;
  background-color: #0aa8bd;
  background-image: url('/assets/img/lp4/GuaranteeBanner.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.lp4-guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.lp4-guarantee-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp4-guarantee-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 20px;
}

.lp4-guarantee-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.lp4-guarantee-text {
  max-width: 700px;
  margin: 0 auto 24px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.lp4-guarantee-points {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.lp4-guarantee-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.lp4-guarantee-points i {
  font-size: 16px;
  font-weight: 400;
}

.lp4-guarantee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 36px;
  border-radius: 50px;
  background: #ffffff;
  color: #0aa8bd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lp4-guarantee-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #f8fafc;
  color: #0c9eb6;
}

.lp4-guarantee-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(12,158,182,0.18), rgba(255,255,255,0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.85;
  pointer-events: none;
}

.lp4-guarantee-btn:hover {
  color: #0c9eb6;
  transform: translateY(-2px);
}

.lp4-guarantee-btn:hover::before {
  animation: lp4-shine 1.5s ease-out infinite;
}

/* ============================================
   BUSINESS / PERSONAL BRANDS
   ============================================ */
.lp4-business {
  padding: 95px 0 80px;
  background: #f8fafc;
}

.lp4-business-image-wrap {
  position: relative;
}

.lp4-business-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

.lp4-float-chip {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  z-index: 2;
}

.lp4-float-chip strong {
  display: block;
  color: #1f2a44;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.lp4-float-chip span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
}

.lp4-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.lp4-chip-icon-teal {
  background: #e6f9fc;
  color: #06b6d4;
}

.lp4-chip-icon-coral {
  background: #fff0ed;
  color: #ff7a59;
}

.lp4-chip-icon-amber {
  background: #fff7e8;
  color: #f59e0b;
}

.lp4-float-chip-top {
  top: 12px;
  right: -18px;
}

.lp4-float-chip-bottom {
  left: -18px;
  bottom: -20px;
}

.lp4-section-badge-teal {
  background: #e6f9fc;
  border: 1px solid #baeef8;
  color: #0891b2;
}

.lp4-services-title {
  margin-bottom: 18px;
}

.lp4-services-text {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.lp4-services-callout {
  background: #f1f5f9;
  border-left: 3px solid #f87171;
  border-radius: 0 10px 10px 0;
  padding: 16px 14px;
  font-size: 17px;
  color: #1f2a44;
  font-weight: 600;
  line-height: 1.5;
  margin: 16px 0 22px;
}

.lp4-btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #09bad0 0%, #0da4c7 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.lp4-btn-teal::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.55;
  pointer-events: none;
}

.lp4-btn-teal:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 145, 178, 0.35);
}

.lp4-btn-teal:hover::before {
  animation: lp4-shine 1.5s ease-out infinite;
}

/* ============================================
   SPOTLIGHT
   ============================================ */
.lp4-spotlight {
  padding: 90px 0 90px;
  background: #f8fafc;
}

.lp4-spotlight-title {
  margin-bottom: 18px;
}

.lp4-spotlight-text {
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.lp4-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.lp4-mini-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e9eef5;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp4-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.lp4-mini-icon-teal {
  background: #e6f9fc;
  color: #06b6d4;
}

.lp4-mini-icon-amber {
  background: #fff7e8;
  color: #f59e0b;
}

.lp4-mini-card h5 {
  margin: 0;
  font-size: 14px;
  color: #1f2a44;
  font-weight: 700;
}

.lp4-mini-card p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #64748b;
}

.lp4-btn-teal-wide {
  min-width: 220px;
}

.lp4-spotlight-image-wrap {
  position: relative;
}

.lp4-spotlight-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  display: block;
}

.lp4-spotlight-chip-top {
  top: -16px;
  left: -16px;
}

.lp4-spotlight-chip-bottom {
  right: -10px;
  bottom: -18px;
}

.lp4-happy-chip {
  padding: 10px 14px;
  gap: 8px;
}

.lp4-happy-chip strong {
  font-size: 13px;
  white-space: nowrap;
}

.lp4-dot-group {
  display: flex;
  align-items: center;
}

.lp4-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -4px;
}

.lp4-dot:first-child {
  margin-left: 0;
}

.lp4-dot-teal {
  background: #06b6d4;
}

.lp4-dot-coral {
  background: #f87171;
}

.lp4-dot-amber {
  background: #f59e0b;
}

/* ============================================
   FORM
   ============================================ */
.lp4-page .form-control {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s;
}

.lp4-page .form-control:focus {
  border-color: #17B9CC;
  box-shadow: 0 0 0 4px rgba(23,185,204,0.15), 0 1px 3px rgba(0,0,0,0.08);
  outline: none;
}

/* ============================================
   WRITING SERVICES SECTION
   ============================================ */
.lp4-writing-services {
  padding: 70px 0 60px;
  background: #f8fafc;
}

.lp4-writing-services .content-box {
  max-width: 700px;
  margin: 0 auto 40px;
}

.lp4-writing-services .content-box h2 {
  color: #101828;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 8px;
}

.lp4-writing-services .content-box .subtitle {
  color: #17B9CC;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lp4-writing-services .content-box .desc {
  color: #6A7282;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 24px;
}

.lp4-writing-services .services-grid {
  position: relative;
}

/* Full-bleed track (edge-to-edge carousel under header) */
.lp4-services-track-bleed {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 8px;
  padding-bottom: 8px;
}

.lp4-services-swiper-wrap {
  position: relative;
  padding: 0 52px;
  margin: 0 -8px;
}

.lp4-services-swiper-wrap--full {
  padding: 0 clamp(12px, 3vw, 28px);
  margin: 0;
  max-width: none;
}

.lp4-services-swiper.swiper {
  position: relative;
  padding-bottom: 8px;
  cursor: grab;
}

.lp4-services-swiper.swiper:active {
  cursor: grabbing;
}

/* Slow, steady slide motion (marquee-like) between autoplay steps */
.lp4-services-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.lp4-services-swiper .swiper-slide.lp4-services-slide {
  height: auto;
  box-sizing: border-box;
}

.lp4-services-swiper .swiper-slide .service-card {
  height: 100%;
}


.lp4-writing-services .service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.lp4-writing-services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.lp4-writing-services .service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.lp4-writing-services .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp4-writing-services .service-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.lp4-writing-services .service-card-body {
  padding: 20px;
}

.lp4-writing-services .service-card-body h4 {
  color: #101828;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
}

.lp4-writing-services .service-card-body p {
  color: #6A7282;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  line-height: 22px;
  margin: 0;
}

@media (max-width: 767px) {
  .lp4-writing-services { padding: 40px 0 30px; }
  .lp4-writing-services .content-box h2 { font-size: 22px; line-height: 30px; }
  .lp4-writing-services .service-card-img { height: 150px; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .lp4-writing-services .content-box h2 { font-size: 26px; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp4-faq-section {
  padding: 70px 0;
  background: #f8fafc;
}

.lp4-faq-section .content-box {
  margin-bottom: 40px;
}

.lp4-faq-section .content-box h2 {
  color: #101828;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 6px;
}

.lp4-faq-section .content-box .subtitle {
  color: #17B9CC;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.lp4-faq-section .faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.lp4-faq-section .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.lp4-faq-section .faq-item.active {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.lp4-faq-section .faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #101828;
  line-height: 24px;
  transition: color 0.2s;
}

.lp4-faq-section .faq-item.active .faq-header {
  color: #17B9CC;
}

.lp4-faq-section .faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #9CA3AF;
}

.lp4-faq-section .faq-chevron.open {
  transform: rotate(180deg);
  color: #17B9CC;
}

.lp4-faq-section .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.lp4-faq-section .faq-body.show {
  max-height: 300px;
  padding: 0 24px 18px;
}

.lp4-faq-section .faq-body p {
  color: #6A7282;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

@media (max-width: 767px) {
  .lp4-faq-section { padding: 40px 0; }
  .lp4-faq-section .content-box h2 { font-size: 24px; line-height: 32px; }
  .lp4-faq-section .faq-header { font-size: 14px; padding: 14px 18px; }
  .lp4-faq-section .faq-body { padding: 0 18px; }
  .lp4-faq-section .faq-body.show { padding: 0 18px 14px; }
}

/* ============================================
   REVIEW SECTION
   ============================================ */
.review-section {
  padding-top: 70px;
  padding-bottom: 30px;
}

.review-section .content-box {
  text-align: center;
  margin: auto;
  max-width: 815px;
  padding-bottom: 40px;
}

.review-section .content-box h4 {
  position: relative;
  color: #6A7282;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin: auto;
  max-width: 170px;
  margin-bottom: 30px;
}

.review-section .content-box h4::after {
  content: '';
  position: absolute;
  top: -21px;
  right: 0;
  width: 20px;
  height: 81px;
  background: url(/assets/lp2/img/line.png) no-repeat center/contain;
}

.review-section .content-box h4::before {
  content: '';
  position: absolute;
  top: -21px;
  left: 0;
  width: 20px;
  height: 81px;
  background: url(/assets/lp2/img/line.png) no-repeat center/contain;
}

.review-section .content-box h2 {
  color: #101828;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 32px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.review-section .content-box p {
  color: #79839A;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 167%;
}

/* Testimonials slider (reference: 3 cards, stars top, circular nav, pill pagination) */
.lp4-review-swiper-wrap {
  position: relative;
  padding: 0 56px 48px;
  margin: 0 auto;
  max-width: 1200px;
}

.lp4-review-swiper.swiper {
  position: relative;
  padding-bottom: 44px;
}

.lp4-review-swiper .swiper-slide.lp4-review-slide {
  height: auto;
  box-sizing: border-box;
}

.lp4-review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 22px 26px;
  border-radius: 18px;
  border: 1px solid #c7e8ee;
  background: linear-gradient(180deg, #f4fafc 0%, #eef6f9 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lp4-review-card:hover {
  box-shadow: 0 10px 28px rgba(23, 185, 204, 0.12);
  transform: translateY(-2px);
}

.lp4-review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}

.lp4-review-star {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.lp4-review-quote {
  margin: 0 0 22px;
  padding: 0;
  border: none;
  font-family: "Poppins", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: #3d4a5c;
  flex: 1 1 auto;
}

.lp4-review-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 4px;
}

.lp4-review-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0d9488;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
}

.lp4-review-meta {
  text-align: left;
}

.lp4-review-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #7f1d1d;
  margin: 0 0 2px;
}

.lp4-review-role {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  margin: 0;
}

/* Arrows — white circle, teal chevron, overlap card edges */
.lp4-review-swiper .swiper-button-prev,
.lp4-review-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  background: #fff;
  border-radius: 50%;
  color: #17b9cc;
  border: 1px solid #c7e8ee;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  z-index: 12;
}

.lp4-review-swiper .swiper-button-prev {
  left: -6px;
  right: auto;
}

.lp4-review-swiper .swiper-button-next {
  right: -6px;
  left: auto;
}

.lp4-review-swiper .swiper-button-prev::after,
.lp4-review-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.lp4-review-swiper .swiper-button-prev:hover,
.lp4-review-swiper .swiper-button-next:hover {
  background: #f0fdfa;
  border-color: #17b9cc;
  color: #0d9488;
}

.lp4-review-swiper .swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Pagination — grey dots, active = teal pill */
.lp4-review-swiper .swiper-pagination {
  bottom: 6px !important;
  left: 0;
  right: 0;
}

.lp4-review-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background: #cbd5e1;
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.lp4-review-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #17b9cc;
}

@media (max-width: 991px) {
  .lp4-review-swiper-wrap {
    padding: 0 48px 44px;
  }
}

@media (max-width: 767px) {
  .review-section { padding-top: 40px; }
  .review-section .content-box h2 { font-size: 20px; line-height: 28px; }
  .lp4-review-swiper-wrap {
    padding: 0 42px 40px;
  }

  .lp4-review-card {
    padding: 22px 18px 20px;
  }

  .lp4-review-quote {
    font-size: 14px;
    line-height: 1.6;
  }

  .lp4-review-swiper .swiper-button-prev,
  .lp4-review-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
    margin-top: -19px;
  }

  .lp4-review-swiper .swiper-button-prev::after,
  .lp4-review-swiper .swiper-button-next::after {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .review-section .content-box h2 { font-size: 25px; }
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  background: url("/assets/lp2/img/formbanner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
}

.form-section .part {
  max-width: 895px;
  margin: auto;
  text-align: center;
}

.form-section .part h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 42.5px;
}

.form-section .part p {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.form-section .part .contact-form .form-control {
  border-radius: 10px;
  background: #FFF;
  color: rgba(0,0,0,0.5);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-section .part .contact-form .form-control:focus {
  border-color: #17B9CC;
  box-shadow: 0 0 0 4px rgba(23,185,204,0.15), 0 1px 3px rgba(0,0,0,0.08);
  outline: none;
}

.form-section .part .form-submit-get {
  border-radius: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(140deg, #00CDE2 5.54%, #0087A3 93.59%), #0E62DC;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 white;
  text-decoration: none;
  display: inline-block;
}

.form-section .part .form-submit-get:hover {
  transform: translateY(0px) translateX(0px);
  box-shadow: none;
}

.form-section .part .form-submit-get:active {
  transform: translateY(0px) translateX(0px);
  box-shadow: none;
}

@media (max-width: 767px) {
  .form-section { padding-top: 30px; padding-bottom: 30px; }
  .form-section .part h2 { font-size: 22px; line-height: 30.5px; }
  .form-section .part p { font-size: 14px; line-height: 22px; }
  .form-section .part .form-submit-get { font-size: 13px; padding: 10px 20px; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .form-section .part h2 { font-size: 28px; line-height: 36.5px; }
  .form-section .part p { font-size: 14px; line-height: 22px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: url("/assets/lp2/img/footer.webp");
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer .content-part {
  max-width: 749px;
  margin: auto;
}

.footer .content-part p {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 767px) {
  .footer { padding-top: 30px; padding-bottom: 30px; }
  .footer .content-part p { font-size: 14px; line-height: 22px; }
}

/* ============================================
   BOTTOM FOOTER BAR
   ============================================ */
.bottom-footer-bar {
  background: #17B9CC;
  padding-top: 15px;
  padding-bottom: 15px;
}

.bottom-footer-bar .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-footer-bar .item p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.bottom-footer-bar .item a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.bottom-footer-bar .item a:hover {
  color: #03B6CB;
}

@media (max-width: 767px) {
  .bottom-footer-bar { padding-top: 10px; padding-bottom: 10px; }
  .bottom-footer-bar .item { flex-direction: column; }
  .bottom-footer-bar .item .text { margin-bottom: 10px; }
  .bottom-footer-bar .item p,
  .bottom-footer-bar .item a { font-size: 14px; line-height: 22px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes lp4-shine {
  0%   { left: -100px; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

@keyframes lp4-spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .lp4-hero-title {
    font-size: 34px;
  }

  .lp4-guarantee {
    padding: 52px 0;
  }

  .lp4-guarantee-title {
    font-size: 28px;
  }

  .lp4-hero {
    padding: 40px 0 30px;
    background-image: none;
  }

  .lp4-hero-row {
    min-height: 0;
  }

  .lp4-hero-content-col {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .lp4-hero-img-col {
    display: block;
    text-align: center !important;
  }

  .lp4-hero-img {
    margin: 26px auto 0;
    max-width: 560px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .lp4-section-title {
    font-size: 28px;
  }

  .lp4-business,
  .lp4-spotlight {
    padding: 70px 0 60px;
  }

  .lp4-float-chip-top {
    right: 10px;
    top: 10px;
  }

  .lp4-float-chip-bottom {
    left: 10px;
    bottom: 10px;
  }

  .lp4-spotlight-chip-top {
    left: 10px;
    top: 10px;
  }

  .lp4-spotlight-chip-bottom {
    right: 10px;
    bottom: 10px;
  }

  .lp4-why {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .lp4-hero-title {
    font-size: 28px;
  }

  .lp4-hero-text {
    font-size: 14px;
    max-width: 100%;
  }

  .lp4-guarantee {
    padding: 40px 0;
    background-position: center;
  }

  .lp4-guarantee-title {
    font-size: 24px;
  }

  .lp4-guarantee-text {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .lp4-guarantee-points {
    gap: 10px 14px;
    margin-bottom: 18px;
  }

  .lp4-guarantee-points span {
    font-size: 11px;
  }

  .lp4-guarantee-btn {
    min-width: 0;
    width: 100%;
    max-width: 230px;
    font-size: 12px;
    padding: 11px 16px;
  }

  .lp4-hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .lp4-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp4-btn-primary,
  .lp4-btn-outline {
    font-size: 14px;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }

  .lp4-trust-row {
    gap: 10px;
  }

  .lp4-logo img {
    height: 32px;
  }

  .lp4-why {
    padding: 70px 0 40px;
  }

  .lp4-section-title {
    font-size: 24px;
  }

  .lp4-why-card {
    padding: 20px 18px;
  }

  .lp4-business,
  .lp4-spotlight {
    padding: 50px 0 40px;
  }

  .lp4-float-chip {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .lp4-float-chip strong {
    font-size: 16px;
  }

  .lp4-float-chip span {
    font-size: 10px;
  }

  .lp4-chip-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .lp4-mini-grid {
    grid-template-columns: 1fr;
  }

  .lp4-btn-teal {
    width: 100%;
    font-size: 14px;
    padding: 13px 18px;
  }
}

@media (max-width: 480px) {
  .lp4-hero {
    padding-top: 28px;
  }

  .lp4-hero-title {
    font-size: 24px;
    line-height: 1.28;
  }

  .lp4-hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 7px 10px;
    font-size: 11px;
  }

  .lp4-trust-row {
    gap: 8px;
  }

  .lp4-trust-label {
    font-size: 12px;
  }

  .lp4-star {
    font-size: 14px;
  }

  .lp4-hero-note {
    font-size: 12px;
    padding-left: 0;
  }

  .lp4-why {
    padding-top: 56px;
  }
}
