/* ═══════════════════════════════════════════════════════
   Padzilly — Shared Landing Page Design System
   Ported from LandingPage.css for static HTML pages
   ═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  /* Brand Colors */
  --lp-navy: #283c8f;
  --lp-navy-dark: #1a2a6c;
  --lp-navy-light: #3a52b5;
  --lp-orange: #eb5a2d;
  --lp-orange-light: #ff6b3d;
  --lp-orange-glow: rgba(235, 90, 45, 0.1);

  /* Surfaces */
  --lp-bg: #f7f8fc;
  --lp-bg-warm: #fafbff;
  --lp-surface: #ffffff;
  --lp-surface-hover: #f9fafd;

  /* Text */
  --lp-text: #1a1a2e;
  --lp-text-muted: #5a6075;
  --lp-text-light: #8a90a8;

  /* Borders */
  --lp-border: #e4e7f0;
  --lp-border-light: #f0f2f8;

  /* Typography */
  --lp-font-display: "Montserrat", sans-serif;
  --lp-font-body: "Outfit", sans-serif;

  /* Motion */
  --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radii */
  --lp-radius-sm: 10px;
  --lp-radius-md: 16px;
  --lp-radius-lg: 20px;
  --lp-radius-pill: 100px;

  /* Shadows */
  --lp-shadow-sm: 0 1px 3px rgba(26, 42, 108, 0.06);
  --lp-shadow-md: 0 4px 16px rgba(26, 42, 108, 0.08);
  --lp-shadow-lg: 0 8px 32px rgba(26, 42, 108, 0.1);
  --lp-shadow-hover: 0 12px 40px rgba(26, 42, 108, 0.12);
}

/* ═══════════════════════════════════════════════════════
   Base Reset & Body
   ═══════════════════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--lp-bg);
  font-family: var(--lp-font-body);
  color: var(--lp-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  margin: 0 0 1rem 0;
}

ul {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   Layout
   ═══════════════════════════════════════════════════════ */

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

.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lp-text-center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   Typography
   ═══════════════════════════════════════════════════════ */

.lp-heading-xl {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--lp-navy-dark);
  margin: 0 0 1rem 0;
}

.lp-heading-lg {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw + 0.3rem, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lp-navy-dark);
  margin: 0 0 1rem 0;
}

.lp-heading-md {
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--lp-navy-dark);
  margin: 0 0 0.5rem 0;
}

.lp-body {
  font-family: var(--lp-font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lp-text-muted);
}

.lp-body-sm {
  font-family: var(--lp-font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-text-muted);
}

.lp-label {
  font-family: var(--lp-font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-text-light);
}

/* ═══════════════════════════════════════════════════════
   Sections
   ═══════════════════════════════════════════════════════ */

.lp-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.lp-section--alt {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--lp-bg-warm);
}

.lp-section--navy {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(
    135deg,
    var(--lp-navy-dark) 0%,
    var(--lp-navy) 50%,
    var(--lp-navy-light) 100%
  );
  color: #fff;
}

.lp-section--navy .lp-heading-xl,
.lp-section--navy .lp-heading-lg,
.lp-section--navy .lp-heading-md {
  color: #fff;
}

.lp-section--navy .lp-body,
.lp-section--navy .lp-body-sm {
  color: rgba(255, 255, 255, 0.82);
}

/* ═══════════════════════════════════════════════════════
   Badge
   ═══════════════════════════════════════════════════════ */

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--lp-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.lp-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-orange);
}

.lp-badge--dark {
  background: var(--lp-orange-glow);
  border: 1px solid rgba(235, 90, 45, 0.15);
  color: var(--lp-orange);
}

/* ═══════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════ */

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--lp-orange);
  color: #fff;
  border: none;
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--lp-ease);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.lp-btn-primary:hover {
  background: var(--lp-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(235, 90, 45, 0.35);
  color: #fff;
}

.lp-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(235, 90, 45, 0.25);
}

.lp-btn-primary .lp-btn-arrow {
  transition: transform 0.3s var(--lp-ease);
  font-size: 1.1em;
}

.lp-btn-primary:hover .lp-btn-arrow {
  transform: translateX(3px);
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--lp-ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lp-btn-secondary:active {
  transform: translateY(0);
}

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--lp-navy);
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--lp-ease);
  text-decoration: none;
}

.lp-btn-outline:hover {
  border-color: var(--lp-navy);
  background: rgba(40, 60, 143, 0.04);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   Cards
   ═══════════════════════════════════════════════════════ */

.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  transition:
    transform 0.35s var(--lp-ease),
    box-shadow 0.35s var(--lp-ease);
  overflow: hidden;
}

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

.lp-card__body {
  padding: 1.5rem;
}

.lp-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════ */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-border);
  height: 60px;
}

.lp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.lp-header__logo img {
  height: 30px;
  width: auto;
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-nav-link {
  font-family: var(--lp-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s var(--lp-ease);
}

.lp-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lp-orange);
  border-radius: 2px;
  transition: width 0.3s var(--lp-ease);
}

.lp-nav-link:hover {
  color: var(--lp-navy);
}

.lp-nav-link:hover::after {
  width: 100%;
}

.lp-nav-link--active {
  color: var(--lp-navy);
  font-weight: 600;
}

.lp-nav-btn {
  padding: 0.5rem 1.5rem;
  background: var(--lp-orange);
  color: #fff;
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--lp-ease);
  text-decoration: none;
}

.lp-nav-btn:hover {
  background: var(--lp-orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(235, 90, 45, 0.3);
  color: #fff;
}

/* Mobile menu toggle */
.lp-header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--lp-navy);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════ */

.lp-footer {
  background: var(--lp-bg-warm);
  border-top: 1px solid var(--lp-border);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.lp-footer__grid {
  display: flex;
  gap: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-footer__brand {
  width: 36%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-footer__brand a {
  display: block;
  line-height: 0;
}

.lp-footer__brand img {
  width: 150px;
  height: 38px;
  object-fit: cover;
}

.lp-footer__brand p {
  font-family: var(--lp-font-body);
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  line-height: 1.4;
  margin: 0;
}

.lp-footer__links {
  width: 28%;
}

.lp-footer__contact {
  width: 36%;
}

.lp-footer__heading {
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-navy-dark);
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
}

.lp-footer__link {
  display: block;
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.25s var(--lp-ease);
}

.lp-footer__link:hover {
  color: var(--lp-navy);
}

.lp-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.lp-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-border);
  transition: all 0.25s var(--lp-ease);
  text-decoration: none;
}

.lp-footer__social:hover {
  border-color: var(--lp-orange);
  background: var(--lp-orange-glow);
}

.lp-footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--lp-text-muted);
}

.lp-footer__social:hover svg {
  fill: var(--lp-orange);
}

.lp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.5rem;
  gap: 1rem;
}

.lp-footer__disclaimer {
  font-family: var(--lp-font-body);
  font-size: 0.72rem;
  color: var(--lp-text-light);
  max-width: 400px;
  line-height: 1.5;
  margin: 0;
}

.lp-footer__stores {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 12px 0 8px 0;
}

.lp-footer__stores a {
  transition: opacity 0.25s;
}

.lp-footer__stores a:hover {
  opacity: 0.8;
}

.lp-footer__stores img {
  display: block;
  height: 33px;
  width: auto;
}

/* Google Play SVG has internal padding — scale it up to match visually */
.lp-footer__stores img[alt="Google Play"] {
  height: 48px;
}

.lp-footer__copyright {
  font-family: var(--lp-font-body);
  font-size: 0.75rem;
  color: var(--lp-text-light);
  margin: 0;
}

.lp-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.lp-footer__legal-link {
  font-family: var(--lp-font-body);
  font-size: 0.82rem;
  color: var(--lp-text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.lp-footer__legal-link:hover {
  color: var(--lp-navy);
}

/* ═══════════════════════════════════════════════════════
   Reveal Animations
   ═══════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--lp-ease),
    transform 0.7s var(--lp-ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

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

@keyframes lp-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════
   Page-Specific Helpers
   ═══════════════════════════════════════════════════════ */

/* Hero content centering */
.lp-hero__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-hero__subtitle {
  font-family: var(--lp-font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

/* Two-column feature layout */
.lp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-feature--reverse {
  direction: rtl;
}

.lp-feature--reverse > * {
  direction: ltr;
}

.lp-feature__img {
  border-radius: var(--lp-radius-lg);
  width: 100%;
  box-shadow: var(--lp-shadow-md);
}

.lp-feature__text ul {
  padding-left: 1.25rem;
}

.lp-feature__text li {
  font-family: var(--lp-font-body);
  color: var(--lp-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Company logo strip */
.lp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  padding: 2rem 0;
}

.lp-logos img {
  height: 35px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s var(--lp-ease);
}

.lp-logos img:hover {
  filter: grayscale(0%) opacity(1);
}

/* Stat cards */
.lp-stat {
  text-align: center;
  padding: 2rem;
}

.lp-stat__number {
  font-family: var(--lp-font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--lp-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lp-stat__label {
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--lp-navy-dark);
  margin-bottom: 0.5rem;
}

/* Step/process card */
.lp-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.lp-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-light));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lp-step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-light));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Comparison table */
.lp-compare {
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  margin: 2rem auto;
  max-width: 960px;
  background: var(--lp-surface);
}

.lp-compare__header {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  background: var(--lp-navy-dark);
  color: #fff;
}

.lp-compare__header-cell {
  padding: 1rem 1.25rem;
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-compare__header-cell--label {
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.lp-compare__header-cell--neg {
  background: rgba(192, 57, 43, 0.2);
}

.lp-compare__header-cell--pos {
  background: rgba(39, 174, 96, 0.2);
}

.lp-compare__row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  border-bottom: 1px solid var(--lp-border-light);
}

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

.lp-compare__row:nth-child(odd) {
  background: var(--lp-bg-warm);
}

.lp-compare__category {
  padding: 1.25rem 1.25rem;
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--lp-navy);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(40, 60, 143, 0.03);
  border-right: 1px solid var(--lp-border-light);
}

.lp-compare__category svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-compare__cell {
  padding: 1.25rem 1.25rem;
  font-family: var(--lp-font-body);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-compare__cell--neg {
  color: #9b2c2c;
  border-right: 1px solid var(--lp-border-light);
}

.lp-compare__cell--pos {
  color: #1e7a45;
}

/* Benefits columns */
.lp-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.lp-benefits__col {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
}

.lp-benefits__col--navy {
  border-left: 4px solid var(--lp-navy);
}

.lp-benefits__col--orange {
  border-left: 4px solid var(--lp-orange);
}

.lp-benefits__title {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lp-navy-dark);
  margin-bottom: 1rem;
}

.lp-benefits__list {
  list-style: none;
  padding: 0;
}

.lp-benefits__list li {
  font-family: var(--lp-font-body);
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.lp-benefits__list li::before {
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.lp-benefits__col--navy .lp-benefits__list li::before {
  content: "\2713";
  color: var(--lp-navy);
}

.lp-benefits__col--orange .lp-benefits__list li::before {
  content: "\2605";
  color: var(--lp-orange);
}

/* Quote highlight */
.lp-quote {
  background: var(--lp-bg-warm);
  border-left: 3px solid var(--lp-orange);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
  font-family: var(--lp-font-body);
  font-style: italic;
  color: var(--lp-text-muted);
  margin: 0.75rem 0;
}

/* Team cards — need visible overflow so avatars aren't clipped */
.lp-card--team {
  overflow: visible;
}

/* Avatar for team cards */
.lp-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--lp-surface);
  box-shadow: var(--lp-shadow-md);
  margin: 0 auto 1rem auto;
  display: block;
}

/* Team card title accent */
.lp-team-title {
  font-family: var(--lp-font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--lp-orange);
  margin-bottom: 0.75rem;
}

/* Video responsive container */
.lp-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
}

.lp-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════
   Split Hero (text left + media right)
   ═══════════════════════════════════════════════════════ */

.lp-hero-lender {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.lp-hero-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.lp-hero-split__text {
  text-align: left;
}

.lp-hero-split__media {
  position: relative;
}

/* Subtle glow behind the video */
.lp-hero-split__media::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 90, 45, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .lp-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero-split__text {
    text-align: center;
  }

  .lp-grid-2,
  .lp-feature,
  .lp-benefits {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-feature--reverse {
    direction: ltr;
  }

  .lp-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .lp-footer__grid {
    flex-direction: column;
    gap: 2rem;
  }

  .lp-footer__brand,
  .lp-footer__links,
  .lp-footer__contact {
    width: 100%;
    padding-right: 0;
  }

  .lp-footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .lp-footer__disclaimer {
    max-width: 100%;
    text-align: center;
  }

  .lp-footer__stores {
    justify-content: center;
  }

  .lp-footer__legal {
    justify-content: center;
  }

  .lp-compare__header,
  .lp-compare__row {
    grid-template-columns: 1fr;
  }

  .lp-compare__header-cell--label {
    display: none;
  }

  .lp-compare__category {
    background: rgba(40, 60, 143, 0.06);
    border-right: none;
    border-bottom: 1px solid var(--lp-border-light);
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }

  .lp-compare__cell--neg {
    border-right: none;
    border-bottom: 1px solid var(--lp-border-light);
    padding-top: 0.75rem;
  }

  .lp-compare__cell--neg::before {
    content: "Without Padzilly";
    display: block;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c0392b;
    margin-bottom: 4px;
  }

  .lp-compare__cell--pos::before {
    content: "With Padzilly";
    display: block;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #27ae60;
    margin-bottom: 4px;
  }
}

@media (max-width: 600px) {
  .lp-header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--lp-surface);
    border-bottom: 1px solid var(--lp-border);
    padding: 1rem 24px;
    gap: 1rem;
    box-shadow: var(--lp-shadow-md);
  }

  .lp-header__nav.show {
    display: flex;
  }

  .lp-header__toggle {
    display: block;
  }

  .lp-grid-4 {
    grid-template-columns: 1fr;
  }

  .lp-container {
    padding: 0 16px;
  }
}
