/* =====================================================
   LoRemmit / Zeltz Brand — Landing Page Styles
   Brand Palette (Zeltz Mini Brand Guide)
     Primary Cyan   : #00B4D8
     Light Blue     : #4A91A7
     Dark Navy      : #0D1B2A
     Accent         : #E8F8FC
     White          : #FFFFFF
   ===================================================== */

/* ---------- CSS Tokens ---------- */
:root {
  --lp-cyan:        #00B4D8;
  --lp-cyan-dark:   #0090AC;
  --lp-cyan-light:  #E8F8FC;
  --lp-blue:        #4A91A7;
  --lp-navy:        #0D1B2A;
  --lp-navy-mid:    #162436;
  --lp-white:       #FFFFFF;
  --lp-grey-50:     #F5F9FC;
  --lp-grey-100:    #E8EDF2;
  --lp-grey-400:    #7585A5;
  --lp-grey-600:    #3D4F63;
  --lp-text:        #1A2B3C;
  --lp-text-muted:  #5A6B7C;
  --lp-radius:      12px;
  --lp-radius-lg:   20px;
  --lp-shadow:      0 4px 24px rgba(0, 180, 216, 0.10);
  --lp-shadow-lg:   0 12px 48px rgba(13, 27, 42, 0.16);
  --lp-transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --lp-font:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.lp-body {
  font-family: var(--lp-font);
  color: var(--lp-text);
  background: var(--lp-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--lp-transition);
  white-space: nowrap;
}

.lp-btn--primary {
  background: var(--lp-cyan);
  color: var(--lp-white);
  border-color: var(--lp-cyan);
}

.lp-btn--primary:hover {
  background: var(--lp-cyan-dark);
  border-color: var(--lp-cyan-dark);
  color: var(--lp-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.30);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-cyan);
  border-color: var(--lp-cyan);
}

.lp-btn--outline:hover {
  background: var(--lp-cyan);
  color: var(--lp-white);
  transform: translateY(-2px);
}

.lp-btn--white {
  background: var(--lp-white);
  color: var(--lp-navy);
  border-color: var(--lp-white);
}

.lp-btn--white:hover {
  background: var(--lp-cyan-light);
  color: var(--lp-cyan-dark);
  transform: translateY(-2px);
}

.lp-btn--ghost-white {
  background: transparent;
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.5);
}

.lp-btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--lp-white);
  color: var(--lp-white);
}

.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--lp-cyan-light);
  color: var(--lp-cyan-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-section-tag--dark {
  background: rgba(0, 180, 216, 0.15);
  color: var(--lp-cyan);
}

.lp-section-title {
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--lp-navy);
  letter-spacing: -0.02em;
}

.lp-section-title--white { color: var(--lp-white); }

.lp-section-subtitle {
  font-size: 17px;
  color: var(--lp-text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 12px;
}

.lp-section-subtitle--white { color: rgba(255,255,255,0.78); }

/* ---------- Navbar ---------- */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--lp-transition), backdrop-filter var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-nav.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.lp-nav__logo img { height: 32px; }

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.lp-nav__links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--lp-transition);
}

.lp-nav__links a:hover { color: var(--lp-cyan); }

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile hamburger */
.lp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lp-white);
  border-radius: 2px;
  transition: all var(--lp-transition);
}

.lp-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.lp-nav__mobile a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  transition: color var(--lp-transition);
}

.lp-nav__mobile a:hover { color: var(--lp-cyan); }

.lp-nav__mobile.open { display: flex; }

/* ---------- Hero Section ---------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-mid) 45%, #0a2a3d 100%);
  overflow: hidden;
  padding-top: 90px;
}

.lp-hero__bg-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero__bg-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 145, 167, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 50px;
  color: var(--lp-cyan);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.lp-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--lp-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.lp-hero__title {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  font-weight: 800;
  color: var(--lp-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.lp-hero__title span {
  background: linear-gradient(90deg, var(--lp-cyan), #64dfdf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.lp-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.lp-hero__trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.lp-hero__trust-flags {
  display: flex;
  gap: 8px;
}

.lp-hero__trust-flags img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Hero visual / card */
.lp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 380px;
}

.lp-hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.lp-hero__card-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-hero__card-badge {
  padding: 4px 10px;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.4);
  border-radius: 50px;
  color: var(--lp-cyan);
  font-size: 12px;
  font-weight: 600;
}

.lp-hero__card-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lp-white);
  margin-bottom: 4px;
}

.lp-hero__card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.lp-hero__card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.lp-hero__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-hero__card-row:last-child { margin-bottom: 0; }

.lp-hero__card-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.lp-hero__card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-white);
}

.lp-hero__card-value--cyan { color: var(--lp-cyan); }

.lp-hero__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--lp-cyan);
  border-radius: 10px;
  color: var(--lp-white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: all var(--lp-transition);
}

.lp-hero__card-cta:hover {
  background: var(--lp-cyan-dark);
  color: var(--lp-white);
  transform: translateY(-2px);
}

.lp-hero__float {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--lp-radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.lp-hero__float--tl {
  top: -28px;
  left: -48px;
}

.lp-hero__float--br {
  bottom: -24px;
  right: -28px;
}

.lp-hero__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.lp-hero__float-icon--green { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.lp-hero__float-icon--cyan  { background: rgba(0, 180, 216, 0.2); color: var(--lp-cyan); }

.lp-hero__float-text { font-size: 13px; font-weight: 600; color: var(--lp-white); }
.lp-hero__float-sub  { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ---------- Marquee / Partners Strip ---------- */
.lp-marquee-strip {
  background: var(--lp-grey-50);
  border-top: 1px solid var(--lp-grey-100);
  border-bottom: 1px solid var(--lp-grey-100);
  padding: 20px 0;
  overflow: hidden;
}

.lp-marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.lp-marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-grey-400);
  white-space: nowrap;
}

.lp-marquee__item i { font-size: 20px; color: var(--lp-cyan); }

/* ---------- How It Works ---------- */
.lp-how {
  padding: 100px 0;
  background: var(--lp-white);
}

.lp-how__header {
  text-align: center;
  margin-bottom: 64px;
}

.lp-how__header .lp-section-subtitle { margin: 12px auto 0; }

.lp-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.lp-how__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--lp-cyan), var(--lp-blue), var(--lp-cyan));
  opacity: 0.25;
  pointer-events: none;
}

.lp-how__step {
  text-align: center;
  position: relative;
}

.lp-how__step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-cyan), var(--lp-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.30);
  position: relative;
  z-index: 1;
}

.lp-how__step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 10px;
}

.lp-how__step-desc {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

/* ---------- Features ---------- */
.lp-features {
  padding: 100px 0;
  background: var(--lp-grey-50);
}

.lp-features__header {
  margin-bottom: 60px;
}

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

.lp-feature-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-grey-100);
  border-radius: var(--lp-radius-lg);
  padding: 36px 32px;
  transition: all var(--lp-transition);
  position: relative;
  overflow: hidden;
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-cyan), var(--lp-blue));
  opacity: 0;
  transition: opacity var(--lp-transition);
}

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-cyan-light);
}

.lp-feature-card:hover::before { opacity: 1; }

.lp-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lp-cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--lp-cyan);
  margin-bottom: 22px;
}

.lp-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 10px;
}

.lp-feature-card__desc {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.75;
}

/* ---------- Stats ---------- */
.lp-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--lp-navy) 0%, #0a2a3d 100%);
  position: relative;
  overflow: hidden;
}

.lp-stats::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.lp-stat-item__number {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  color: var(--lp-cyan);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-stat-item__label {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.lp-stat-item__divider {
  width: 32px;
  height: 3px;
  background: var(--lp-cyan);
  border-radius: 2px;
  margin: 10px auto 0;
  opacity: 0.5;
}

/* ---------- Security / Trust ---------- */
.lp-trust {
  padding: 100px 0;
  background: var(--lp-white);
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-trust__visual {
  position: relative;
}

.lp-trust__shield {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, var(--lp-navy) 0%, #0a2a3d 100%);
  border-radius: var(--lp-radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.lp-trust__shield::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
}

.lp-trust__shield-icon {
  font-size: 56px;
  color: var(--lp-cyan);
  margin-bottom: 20px;
  display: block;
}

.lp-trust__shield-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 12px;
}

.lp-trust__shield-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.lp-trust__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-trust__badge {
  padding: 6px 14px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 50px;
  color: var(--lp-cyan);
  font-size: 12px;
  font-weight: 600;
}

.lp-trust__list { list-style: none; }

.lp-trust__list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lp-grey-100);
}

.lp-trust__list-item:last-child { border-bottom: none; }

.lp-trust__list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lp-cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--lp-cyan);
  flex-shrink: 0;
}

.lp-trust__list-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 4px;
}

.lp-trust__list-desc {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

/* ---------- Testimonials ---------- */
.lp-testimonials {
  padding: 100px 0;
  background: var(--lp-grey-50);
}

.lp-testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.lp-testimonials__header .lp-section-subtitle { margin: 12px auto 0; }

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

.lp-testimonial-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-grey-100);
  border-radius: var(--lp-radius-lg);
  padding: 32px 28px;
  transition: all var(--lp-transition);
}

.lp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 16px;
}

.lp-testimonial-card__text {
  font-size: 15px;
  color: var(--lp-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.lp-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-cyan), var(--lp-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-white);
  flex-shrink: 0;
}

.lp-testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-testimonial-card__role {
  font-size: 13px;
  color: var(--lp-text-muted);
}

/* ---------- CTA ---------- */
.lp-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--lp-cyan) 0%, var(--lp-blue) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lp-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.lp-cta__content { position: relative; z-index: 1; }

.lp-cta__title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  color: var(--lp-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.lp-cta__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.lp-footer {
  background: var(--lp-navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-footer__brand img { height: 30px; margin-bottom: 16px; }

.lp-footer__brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}

.lp-footer__socials {
  display: flex;
  gap: 12px;
}

.lp-footer__social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 17px;
  transition: all var(--lp-transition);
}

.lp-footer__social:hover {
  background: var(--lp-cyan);
  color: var(--lp-white);
}

.lp-footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.lp-footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__col-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--lp-transition);
}

.lp-footer__col-links a:hover { color: var(--lp-cyan); }

.lp-footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.lp-footer__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.lp-footer__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

/* ---------- Scroll Top ---------- */
.lp-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lp-cyan);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--lp-transition);
  z-index: 999;
  text-decoration: none;
}

.lp-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-scroll-top:hover {
  background: var(--lp-cyan-dark);
  color: var(--lp-white);
  transform: translateY(-3px);
}

/* ---------- Animations ---------- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .lp-how__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-how__grid::before { display: none; }
  .lp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .lp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lp-trust__grid { gap: 48px; }
}

@media (max-width: 768px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 80px; }
  .lp-hero__visual { order: -1; }
  .lp-hero__float--tl, .lp-hero__float--br { display: none; }
  .lp-hero__card { max-width: 100%; }

  .lp-nav__links, .lp-nav__actions { display: none; }
  .lp-nav__hamburger { display: flex; }

  .lp-how__grid { grid-template-columns: 1fr 1fr; }
  .lp-features__grid { grid-template-columns: 1fr; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-trust__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-testimonials__grid { grid-template-columns: 1fr; }
  .lp-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .lp-how__grid { grid-template-columns: 1fr; }
  .lp-stats__grid { grid-template-columns: 1fr 1fr; }
  .lp-hero__actions { flex-direction: column; align-items: flex-start; }
  .lp-cta__actions { flex-direction: column; align-items: center; }
  .lp-footer__bottom { flex-direction: column; text-align: center; }
}

/* =====================================================
   Exchange Rate Ticker
   ===================================================== */
/* ── Live Rates Ticker ───────────────────────────────── */
.lp-rates-ticker {
  background: #0b1929;
  border-top: 1px solid rgba(0, 180, 216, 0.18);
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 68px;
  position: relative;
}

/* Gradient fade at far right so items smoothly disappear */
.lp-rates-ticker::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, transparent, #0b1929);
  pointer-events: none;
  z-index: 3;
}

/* LIVE RATES pill label */
.lp-rates-ticker__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  background: linear-gradient(135deg, #00B4D8 0%, #0090AC 100%);
  color: var(--lp-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  box-shadow: 4px 0 18px rgba(0, 180, 216, 0.35);
}

/* Animated pulse dot in the label */
.lp-rates-ticker__label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.lp-rates-ticker__label i { font-size: 15px; opacity: 0.9; }

.lp-rates-ticker__overflow {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}

.lp-rates-ticker__track {
  display: flex;
  align-items: center;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.lp-rates-ticker__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  height: 68px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--lp-transition);
}

.lp-rates-ticker__item:hover { background: rgba(0, 180, 216, 0.05); }

/* Side-by-side flags with arrow connector */
.lp-ticker-flags {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.lp-ticker-flag {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* Tiny arrow between the two flags */
.lp-ticker-flags::after {
  content: "→";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.30);
  line-height: 1;
  flex-shrink: 0;
}

/* Right-side info column */
.lp-ticker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 68px;
}

.lp-rates-ticker__pair {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
}

.lp-rates-ticker__rate {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lp-rates-ticker__buy-sell {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
}

.lp-rates-ticker__buy,
.lp-rates-ticker__sell {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.lp-rates-ticker__buy {
  color: #22c55e;
}

.lp-rates-ticker__sell {
  color: #f87171;
}

/* Change pill badge */
.lp-rates-ticker__change {
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.lp-rates-ticker__change i { font-size: 12px; }

.lp-rates-ticker__change--up {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.20);
}

.lp-rates-ticker__change--down {
  color: #dc2626;
  background: rgba(248, 113, 113, 0.10);
  border: 1px solid rgba(248, 113, 113, 0.18);
}

/* =====================================================
   Rate Calculator Section
   ===================================================== */
.lp-calculator {
  padding: 100px 0;
  background: var(--lp-grey-50);
}

.lp-calculator__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.lp-calculator__intro .lp-section-subtitle { max-width: 420px; }

.lp-calculator__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.lp-calculator__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--lp-text-muted);
}

.lp-calculator__features li i {
  font-size: 20px;
  color: var(--lp-cyan);
  flex-shrink: 0;
}

/* --- Calculator Card --- */
.lp-calc-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-grey-100);
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.10);
}

.lp-calc-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.lp-calc-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-calc-card__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

.lp-calc-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

.lp-calc-card__field { margin-bottom: 16px; }

.lp-calc-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.lp-calc-card__input-row {
  display: flex;
  border: 1.5px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  overflow: visible;
  position: relative;
  transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-calc-card__input-row:focus-within {
  border-color: var(--lp-cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.10);
}

.lp-calc-card__amount {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-navy);
  font-family: var(--lp-font);
  background: transparent;
  border-radius: var(--lp-radius) 0 0 var(--lp-radius);
}

.lp-calc-card__amount::-webkit-inner-spin-button,
.lp-calc-card__amount::-webkit-outer-spin-button { -webkit-appearance: none; }

.lp-calc-card__result {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-cyan-dark);
  background: var(--lp-cyan-light);
  display: flex;
  align-items: center;
  border-radius: 0;
}

/* ── Custom Currency Select ── */
.lp-cur-select {
  position: relative;
  flex-shrink: 0;
  border-left: 1.5px solid var(--lp-grey-100);
}

.lp-cur-select__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--lp-grey-50);
  border: none;
  cursor: pointer;
  font-family: var(--lp-font);
  height: 100%;
  border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
  transition: background var(--lp-transition);
  min-width: 110px;
}

.lp-cur-select__trigger:hover { background: var(--lp-grey-100); }

.lp-cur-select__flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--lp-grey-100);
  flex-shrink: 0;
}

.lp-cur-select__code {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: 0.03em;
}

.lp-cur-select__caret {
  font-size: 14px;
  color: var(--lp-grey-400);
  margin-left: auto;
  transition: transform var(--lp-transition);
}

.lp-cur-select__trigger[aria-expanded="true"] .lp-cur-select__caret {
  transform: rotate(180deg);
}

.lp-cur-select__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--lp-white);
  border: 1px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.14);
  z-index: 200;
  overflow: hidden;
  animation: fadeInDown 0.18s ease;
}

.lp-cur-select__menu--right { left: auto; right: 0; }

.lp-cur-select__menu.open { display: block; }

.lp-cur-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background var(--lp-transition);
}

.lp-cur-select__option:hover { background: var(--lp-grey-50); }

.lp-cur-select__option[aria-selected="true"] {
  background: var(--lp-cyan-light);
}

.lp-cur-select__opt-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--lp-grey-100);
  flex-shrink: 0;
}

.lp-cur-select__opt-code {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-navy);
  min-width: 38px;
}

.lp-cur-select__opt-name {
  font-size: 13px;
  color: var(--lp-text-muted);
}

/* ── Swap row ── */
.lp-calc-card__swap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  margin: 4px 0;
  border-top: 1px solid var(--lp-grey-100);
  border-bottom: 1px solid var(--lp-grey-100);
}

.lp-calc-card__rate-line {
  font-size: 13px;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-calc-card__swap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-grey-100);
  background: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lp-cyan);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--lp-transition);
}

.lp-calc-card__swap:hover {
  background: var(--lp-cyan);
  color: var(--lp-white);
  border-color: var(--lp-cyan);
  transform: rotate(180deg);
}

/* ── Breakdown ── */
.lp-calc-card__breakdown {
  background: var(--lp-grey-50);
  border-radius: var(--lp-radius);
  padding: 16px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-calc-card__breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-calc-card__breakdown-row span:last-child {
  font-weight: 600;
  color: var(--lp-text);
}

.lp-calc-card__breakdown-row--total {
  padding-top: 10px;
  border-top: 1px solid var(--lp-grey-100);
  font-size: 14px;
}

.lp-calc-card__breakdown-row--total span,
.lp-calc-card__breakdown-row--total span:last-child {
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-calc-card__disclaimer {
  font-size: 11px;
  color: var(--lp-text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive additions */
@media (max-width: 1024px) {
  .lp-calculator__layout { gap: 48px; }
}

@media (max-width: 768px) {
  .lp-calculator__layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-rates-ticker__label span { display: none; }
  .lp-rates-ticker__label { padding: 0 14px; }
  .lp-cur-select__menu { min-width: 180px; }
}
