/* Rwasem (رواسم) — Landing Page */

:root {
  --lp-bg: #ffffff;
  --lp-surface: #ffffff;
  --lp-text: #1e3a5f;
  --lp-muted: #475569;
  --lp-border: rgba(30, 58, 95, 0.1);
  --lp-primary: #1e3a5f;
  --lp-on-primary: #ffffff;
  --lp-accent: #2dd4bf;
  --lp-green: #2dd4bf;
  --lp-green-dark: #14b8a6;
  --lp-green-muted: #ccfbf1;
  --lp-gold: #14b8a6;
  --lp-gold-soft: #f0fdfa;
  --lp-chart-vps: #1e3a5f;
  --lp-chart-muted: #64748b;
  --lp-navy: #1e3a5f;
  --lp-on-green: #ffffff;
  --lp-teal: #2dd4bf;
  --lp-teal-dark: #14b8a6;
  --lp-teal-muted: #ccfbf1;
  --lp-promo-h: 38px;
  --lp-radius: 22px;
  --lp-font: 'Tajawal', sans-serif;
  --lp-max: 1160px;
  --lp-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --lp-gradient: linear-gradient(160deg, #1e3a5f 0%, #2d4a73 55%, #1e3a5f 100%);
  --lp-header-bg: #ffffff;
  --lp-header-border: rgba(30, 58, 95, 0.06);
  --lp-header-shadow: rgba(30, 58, 95, 0.06);
  --lp-surface-elevated: #ffffff;
  --lp-input-bg: #ffffff;
  --lp-overlay: rgba(8, 10, 18, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: var(--lp-font);
}

body {
  margin: 0;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--lp-font);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.lp-wrap {
  overflow-x: hidden;
}

/* ── Header ── */
.lp-header {
  position: fixed;
  inset: var(--lp-promo-h, 0) 0 auto;
  z-index: 100;
  background: var(--lp-header-bg);
  border-bottom: 1px solid var(--lp-header-border);
  transition: background 0.25s var(--lp-ease), border-color 0.25s var(--lp-ease), box-shadow 0.25s;
}

.lp-header.scrolled {
  background: var(--lp-header-bg);
  border-bottom-color: var(--lp-header-border);
  box-shadow: 0 8px 30px var(--lp-header-shadow);
}

.lp-header__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  position: relative;
  z-index: 102;
}

.lp-brand img {
  width: auto;
  height: 52px;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
  object-fit: contain;
}

.lp-brand--logo img {
  height: 58px;
  width: auto;
  max-width: 210px;
  background: #ffffff;
}

.lp-nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 901px) {
  .lp-nav {
    position: fixed;
    top: var(--lp-promo-h, 0);
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--lp-max));
    padding: 0.85rem 1.25rem;
    justify-content: flex-end;
    z-index: 101;
    pointer-events: auto;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
  }

  .lp-nav__panel {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    height: auto;
    background: transparent;
    box-shadow: none;
  }

  .lp-nav__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    flex: 1;
    overflow: visible;
    padding: 0;
  }

  .lp-nav__head {
    display: none;
  }

  .lp-nav__footer {
    display: none;
  }

  .lp-nav a.lp-nav__mobile-hide {
    display: none;
  }

  .lp-nav .lp-lang {
    margin-top: 0;
  }

  .lp-nav .lp-btn--sm {
    width: auto;
    margin-top: 0;
  }

  .lp-nav__tools {
    margin-inline-start: 0.35rem;
    padding-inline-start: 0.65rem;
    border-inline-start: 1px solid var(--lp-border);
  }
}

.lp-nav__link {
  padding: 0.45rem 0.7rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--lp-muted);
  border-radius: 10px;
  transition: color 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-nav__link:hover,
.lp-nav__link.active {
  color: var(--lp-text);
  background: var(--lp-green-muted);
}

.lp-nav__link.active {
  font-weight: 800;
}

.lp-nav__link--brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
}

.lp-nav__link-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--lp-navy), #2d4a73);
  color: var(--lp-teal);
  font-size: 0.68rem;
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.06);
}

.lp-nav__link-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.06);
}

.lp-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--lp-navy);
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.04);
  transition: background 0.22s var(--lp-ease), border-color 0.22s var(--lp-ease);
}

.lp-menu-toggle:hover {
  background: #f8fafc;
  border-color: rgba(45, 212, 191, 0.35);
}

.lp-nav a:not(.lp-btn) {
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-muted);
  border-radius: 10px;
  transition: color 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-nav a:not(.lp-btn):hover {
  color: var(--lp-text);
  background: rgba(30, 58, 95, 0.04);
}

.lp-lang-dropdown {
  position: relative;
}

.lp-lang-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 42px;
  min-height: 42px;
  padding: 0 0.7rem;
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(30, 58, 95, 0.04);
  transition: border-color 0.22s var(--lp-ease), box-shadow 0.22s var(--lp-ease), background 0.22s var(--lp-ease);
}

.lp-lang-dropdown__trigger:hover,
.lp-lang-dropdown.is-open .lp-lang-dropdown__trigger {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.08);
  background: #f8fafc;
}

.lp-lang-dropdown__flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.08);
}

.lp-lang-dropdown__code {
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--lp-navy);
}

.lp-lang-dropdown__chevron {
  font-size: 0.58rem;
  color: rgba(30, 58, 95, 0.45);
  transition: transform 0.22s var(--lp-ease);
}

.lp-lang-dropdown.is-open .lp-lang-dropdown__chevron {
  transform: rotate(180deg);
}

.lp-lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  inset-inline-end: 0;
  z-index: 120;
  min-width: 168px;
  padding: 0.35rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.12);
}

.lp-lang-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--lp-navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s var(--lp-ease), color 0.18s var(--lp-ease);
}

.lp-lang-dropdown__option:hover,
.lp-lang-dropdown__option.is-active {
  background: var(--lp-teal-muted);
  color: var(--lp-navy);
}

.lp-lang {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 0.15rem;
}

.lp-lang__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.4rem;
  border-radius: 8px;
  line-height: 0;
  opacity: 0.5;
  transition: opacity 0.2s var(--lp-ease), background 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-lang__flag img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 3px rgba(30, 58, 95, 0.18);
}

.lp-lang__flag:hover {
  opacity: 0.85;
}

.lp-lang__flag.active {
  opacity: 1;
  background: rgba(45, 212, 191, 0.22);
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.38);
}

.lp-lang a {
  display: inline-block;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--lp-muted);
  transition: all 0.2s var(--lp-ease);
  text-decoration: none;
}

.lp-lang a.active {
  background: var(--lp-green-dark);
  color: var(--lp-on-green);
}

.lp-lang button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--lp-muted);
  transition: all 0.2s var(--lp-ease);
}

.lp-lang button.active {
  background: var(--lp-green-dark);
  color: var(--lp-on-green);
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), opacity 0.2s;
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-btn--primary {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 184, 166, 0.35);
}

.lp-btn--primary:hover {
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
}

.lp-btn--outline {
  background: #fff;
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
}

.lp-btn--play {
  background: #1e3a5f;
  color: #fff;
  padding-inline: 1.1rem;
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.2);
}

.lp-btn--play .lp-play-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.lp-btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  border-radius: 16px;
}

.lp-btn--glass {
  background: rgba(255, 255, 255, 0.75);
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
  backdrop-filter: blur(8px);
}

.lp-btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  border-radius: 12px;
}

.lp-main {
  padding-top: calc(72px + var(--lp-promo-h, 0px));
}

.lp-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.lp-btn__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.2;
}

.lp-btn__main {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  padding: 2.5rem 1.25rem 4rem;
  min-height: calc(92vh - 72px);
  display: flex;
  align-items: center;
}

.lp-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(30, 58, 95, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(30, 58, 95, 0.04), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--lp-bg) 72%);
  pointer-events: none;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(30, 58, 95, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(30, 58, 95, 0.04), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--lp-bg) 100%);
  pointer-events: none;
}

.lp-hero__grid {
  position: relative;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin-bottom: 1.1rem;
  box-shadow: var(--lp-shadow-xs, 0 1px 3px rgba(15,23,42,0.04));
}

.lp-badge i {
  color: var(--lp-primary);
}

.lp-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lp-hero-rotator {
  display: grid;
  margin-bottom: 0.35rem;
}

.lp-hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}

.lp-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.lp-hero-dots {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.lp-hero-dot {
  width: 2.35rem;
  height: 0.35rem;
  border: none;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.14);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.lp-hero-dot.is-active {
  width: 2.85rem;
  background: linear-gradient(90deg, #2dd4bf, #5eead4);
}

.lp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-visual__glow {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22), transparent 68%);
  filter: blur(8px);
  z-index: 0;
}

.lp-hero-visual__frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(30, 58, 95, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 1;
  background: #2d4a73;
}

.lp-hero-visual__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.lp-hero-visual__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.lp-hero-visual__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .lp-hero-visual {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .lp-hero-visual__frame {
    width: min(100%, 320px);
    margin-inline: auto;
    aspect-ratio: 4 / 4.2;
  }
}

.lp-hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  color: var(--lp-muted);
  max-width: 34rem;
  line-height: 1.75;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lp-hero__note {
  font-size: 0.85rem;
  color: var(--lp-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-hero__note i {
  color: #14b8a6;
}

/* ── Phone mockup (infographic) ── */
.lp-phone {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
}

.lp-phone__glow {
  position: absolute;
  inset: 8% 0;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.14), transparent 68%);
  filter: blur(32px);
  z-index: 0;
}

.lp-phone__frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #2d4a73, #1e3a5f);
  border-radius: 40px;
  padding: 11px;
  box-shadow:
    0 48px 90px rgba(30, 58, 95, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.lp-phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  background: #1e3a5f;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.lp-phone__screen {
  background: #f4f5f7;
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.lp-phone__status {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1.1rem 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #2d4a73;
  background: #fff;
}

.lp-phone__appbar {
  padding: 0.45rem 1rem 0.65rem;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid rgba(30, 58, 95, 0.05);
}

.lp-phone__body {
  padding: 0.85rem;
  flex: 1;
  background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f5 100%);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-preview-card {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a73 100%);
  color: #fff;
  border-radius: 18px;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.18);
}

.lp-preview-card__info strong {
  display: block;
  font-size: 0.92rem;
  margin: 0.1rem 0;
}

.lp-preview-card__info small {
  display: block;
  opacity: 0.78;
  font-size: 0.66rem;
  line-height: 1.35;
}

.lp-preview-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

.lp-preview-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-infographic-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.lp-infographic-stat {
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.05);
  border-radius: 14px;
  padding: 0.55rem 0.35rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.04);
}

.lp-infographic-stat__icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f0f1f3;
  color: #2d4a73;
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

.lp-infographic-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
}

.lp-infographic-stat small {
  display: block;
  font-size: 0.58rem;
  color: #6b7280;
  font-weight: 700;
  margin-top: 0.1rem;
}

.lp-infographic-flow {
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.05);
  border-radius: 16px;
  padding: 0.7rem 0.75rem;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.04);
}

.lp-infographic-flow__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #6b7280;
}

.lp-infographic-flow__head strong {
  font-size: 0.82rem;
  color: #2d4a73;
}

.lp-infographic-flow__bar {
  height: 7px;
  background: #eceef1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.55rem;
}

.lp-infographic-flow__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2d4a73, #4b5563);
}

.lp-infographic-flow__steps {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
}

.lp-infographic-flow__steps span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #9ca3af;
}

.lp-infographic-flow__steps span i {
  font-size: 0.5rem;
}

.lp-infographic-flow__steps .done {
  color: #2d4a73;
}

.lp-infographic-flow__steps .current {
  color: #14b8a6;
}

.lp-infographic-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.lp-infographic-action {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem;
  border-radius: 13px;
  font-size: 0.64rem;
  font-weight: 800;
  color: #2d4a73;
  border: 1px solid rgba(30, 58, 95, 0.04);
}

.lp-infographic-action i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.lp-infographic-action--services { background: #fff; }
.lp-infographic-action--services i { background: var(--lp-green-muted); color: var(--lp-gold); }

.lp-infographic-action--orders { background: #fff; }
.lp-infographic-action--orders i { background: var(--lp-green-muted); color: var(--lp-gold); }

.lp-infographic-action--shop { background: #fff; }
.lp-infographic-action--shop i { background: #ccfbf1; color: #15803d; }

.lp-infographic-action--cart { background: #fff; }
.lp-infographic-action--cart i { background: #ffedd5; color: #c2410c; }

.lp-infographic-order {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding: 0.6rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.05);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.04);
}

.lp-infographic-order__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #2d4a73;
  color: #fff;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.lp-infographic-order__text {
  flex: 1;
  min-width: 0;
}

.lp-infographic-order__text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
}

.lp-infographic-order__text span {
  display: block;
  font-size: 0.6rem;
  color: #14b8a6;
  font-weight: 700;
  margin-top: 0.1rem;
}

.lp-infographic-order__badge {
  color: #14b8a6;
  font-size: 0.45rem;
  animation: lp-pulse-dot 1.8s ease-in-out infinite;
}

@keyframes lp-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.lp-phone__float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 0.55rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.12);
  animation: lp-float 4s ease-in-out infinite;
  white-space: nowrap;
}

.lp-phone__float-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.lp-phone__float-icon--bell {
  background: var(--lp-green-muted);
  color: var(--lp-gold);
}

.lp-phone__float-icon--gift {
  background: #fce7f3;
  color: #be185d;
}

.lp-phone__float--1 {
  top: 10%;
  right: -12%;
}

.lp-phone__float--2 {
  bottom: 14%;
  left: -14%;
  animation-delay: -2s;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Sections ── */
.lp-section {
  padding: 4.5rem 1.25rem;
}

.lp-section--dark {
  background: linear-gradient(165deg, #1e3a5f 0%, #2d4a73 100%);
  color: #fff;
}

.lp-section__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}

.lp-section__inner--narrow {
  max-width: 760px;
}

.lp-section__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.lp-section__head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.lp-section__head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1rem;
}

.lp-section--dark .lp-section__head p {
  color: rgba(255,255,255,0.65);
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease);
}

.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.lp-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lp-navy);
  color: var(--lp-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.lp-feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* ── Steps ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.lp-step__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.lp-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Download CTA ── */
.lp-strip-cta {
  position: relative;
  padding: clamp(4rem, 7vw, 5.5rem) 1.25rem clamp(3.6rem, 6vw, 4.75rem);
  overflow: hidden;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.lp-strip-cta__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 82% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 56%),
    radial-gradient(ellipse 50% 42% at 14% 82%, rgba(45, 212, 191, 0.09), transparent 50%),
    radial-gradient(ellipse 40% 34% at 88% 68%, rgba(99, 102, 241, 0.08), transparent 46%),
    linear-gradient(180deg, #07080b 0%, #0b0c11 48%, #050508 100%);
  pointer-events: none;
}

.lp-download {
  position: relative;
  width: 100%;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, #f6cf32 0%, #f4c518 44%, #c99006 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 30px 55px rgba(30, 58, 95, 0.24),
    0 10px 24px rgba(112, 78, 0, 0.24);
  overflow: hidden;
}

.lp-download__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  max-width: 980px;
  margin-inline: auto;
}

.lp-download__brand {
  flex: 1 1 420px;
  min-width: min(100%, 320px);
  text-align: start;
}

.lp-download__cta-col {
  flex: 0 1 360px;
  min-width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.lp-download__glow {
  position: absolute;
  top: -18%;
  left: 10%;
  width: 48%;
  height: 58%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.24), transparent 68%);
  pointer-events: none;
}

.lp-download__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.78rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.12);
  border: 1px solid rgba(10, 10, 12, 0.1);
  color: rgba(10, 10, 12, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-download__hero {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lp-download__copy {
  flex: 1;
}

.lp-download__top {
  position: relative;
  z-index: 1;
}

.lp-download__brand .lp-download__icon-ring {
  margin: 0;
}

.lp-download__icon-ring {
  position: relative;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-download__icon-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 55%, rgba(30, 58, 95, 0.12));
  animation: lp-ring-pulse 3s ease-in-out infinite;
}

@keyframes lp-ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.lp-download__icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow:
    0 14px 34px rgba(30, 58, 95, 0.22),
    0 0 0 3px rgba(255, 255, 255, 0.72);
}

.lp-download__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.8rem;
  margin-bottom: 0.82rem;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.08);
  border: 1px solid rgba(10, 10, 12, 0.1);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(10, 10, 12, 0.78);
  letter-spacing: 0.02em;
}

.lp-download__tag i {
  color: var(--lp-navy);
  font-size: 0.85rem;
}

.lp-download h2 {
  margin: 0 0 0.55rem;
  max-width: 11ch;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--lp-navy);
}

.lp-download p {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: rgba(10, 10, 12, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.lp-download__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-download__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(10, 10, 12, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(10, 10, 12, 0.88);
}

.lp-download__perks i {
  color: var(--lp-navy);
  font-size: 0.72rem;
  opacity: 0.82;
}

.lp-download__cta-panel {
  padding: 1.05rem;
  border-radius: 24px;
  background: rgba(12, 12, 15, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 24px rgba(30, 58, 95, 0.12);
  backdrop-filter: blur(8px);
}

.lp-download__cta-label {
  margin: 0 0 0.9rem;
  color: rgba(10, 10, 12, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-download__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.lp-download__hint {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
}

/* ── Launch strip (footer CTA) — dark premium redesign ── */
.lp-strip-cta--launch {
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem clamp(2rem, 4vw, 3rem);
}

.lp-launch {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(45, 212, 191, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(99, 102, 241, 0.12), transparent 50%),
    linear-gradient(155deg, #0c0d12 0%, #12141c 45%, #0a0b10 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 60px rgba(30, 58, 95, 0.45);
}

.lp-launch__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
  pointer-events: none;
}

.lp-launch__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.lp-launch__orb--1 {
  width: 220px;
  height: 220px;
  top: -80px;
  inset-inline-end: -40px;
  background: rgba(45, 212, 191, 0.22);
}

.lp-launch__orb--2 {
  width: 160px;
  height: 160px;
  bottom: -60px;
  inset-inline-start: 10%;
  background: rgba(99, 102, 241, 0.18);
}

.lp-launch__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.lp-launch__visual {
  position: relative;
  width: clamp(7rem, 14vw, 9.5rem);
  height: clamp(7rem, 14vw, 9.5rem);
  flex-shrink: 0;
}

.lp-launch__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(45, 212, 191, 0.35);
  box-shadow:
    0 0 0 8px rgba(45, 212, 191, 0.06),
    0 0 40px rgba(45, 212, 191, 0.15);
  animation: lp-launch-ring-spin 18s linear infinite;
}

.lp-launch__ring::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

@keyframes lp-launch-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.lp-launch__logo {
  position: absolute;
  inset: 18%;
  width: 64%;
  height: 64%;
  margin: auto;
  border-radius: 22%;
  box-shadow: 0 12px 28px rgba(30, 58, 95, 0.4);
}

.lp-launch__body {
  min-width: 0;
  text-align: start;
}

.lp-launch__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #2dd4bf;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lp-launch__title {
  margin: 0 0 0.55rem;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.lp-launch__sub {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.lp-launch__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.lp-launch__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.lp-launch__perks i {
  color: #2dd4bf;
  font-size: 0.7rem;
}

.lp-launch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-launch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-width: min(100%, 220px);
  flex: 1 1 200px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  transition: transform 0.22s var(--lp-ease), box-shadow 0.22s var(--lp-ease), border-color 0.22s var(--lp-ease);
}

.lp-launch__btn-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: start;
}

.lp-launch__btn-label small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.72;
}

.lp-launch__btn-label strong {
  font-size: 1rem;
  font-weight: 800;
}

.lp-launch__btn > i {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  flex-shrink: 0;
}

.lp-launch__btn--primary {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  color: #111827;
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.28);
}

.lp-launch__btn--primary > i {
  background: rgba(30, 58, 95, 0.82);
  color: #2dd4bf;
}

.lp-launch__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(45, 212, 191, 0.35);
}

.lp-launch__btn--alt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lp-launch__btn--alt > i {
  background: rgba(45, 212, 191, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #2dd4bf;
}

.lp-launch__btn--alt:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 768px) {
  .lp-launch__layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.35rem 1.1rem;
  }

  .lp-launch__visual {
    margin-inline: auto;
  }

  .lp-launch__body {
    text-align: center;
  }

  .lp-launch__sub {
    margin-inline: auto;
  }

  .lp-launch__perks {
    justify-content: center;
  }

  .lp-launch__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-launch__btn {
    min-width: 0;
    flex: 1 1 auto;
  }

  .lp-launch__btn-label {
    align-items: center;
    text-align: center;
  }
}

/* ── Download CTA v3 — premium footer banner ── */
.lp-download--v3 {
  padding: clamp(1.35rem, 2.8vw, 2rem);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(30, 58, 95, 0.12), transparent 55%),
    linear-gradient(135deg, #ffe875 0%, #2dd4bf 42%, #d9a006 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(30, 58, 95, 0.05) inset,
    0 24px 50px rgba(30, 58, 95, 0.2),
    0 0 0 4px rgba(45, 212, 191, 0.14);
}

.lp-download--v3 .lp-download__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle at 1px 1px, rgba(30, 58, 95, 0.07) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

.lp-download--v3 .lp-download__shine {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
}

.lp-download--v3 .lp-download__glow {
  top: -20%;
  inset-inline-end: -8%;
  inset-inline-start: auto;
  width: 48%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.42), transparent 68%);
}

.lp-download--v3 .lp-download__eyebrow {
  background: rgba(30, 58, 95, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #5eead4;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.15);
}

.lp-download--v3 .lp-download__tag {
  background: rgba(30, 58, 95, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #2dd4bf;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-weight: 800;
}

.lp-download--v3 .lp-download__tag i {
  color: #5eead4;
}

.lp-download--v3 h2 {
  max-width: 14ch;
  margin-bottom: 0.5rem;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.12;
  color: #0a0a0c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lp-download--v3 .lp-download__lead {
  margin: 0;
  max-width: 30rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.55);
  color: #fff;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  font-weight: 600;
  line-height: 1.65;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.12);
}

.lp-download--v3 .lp-download__icon-ring::before {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), transparent 60%, rgba(255, 255, 255, 0.35));
}

.lp-download--v3 .lp-download__icon {
  box-shadow:
    0 14px 30px rgba(30, 58, 95, 0.28),
    0 0 0 3px rgba(255, 255, 255, 0.85);
}

.lp-download--v3 .lp-download__perks {
  gap: 0.45rem;
}

.lp-download--v3 .lp-download__perks li {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 58, 95, 0.08);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.76rem;
  font-weight: 800;
  color: #111827;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.06);
}

.lp-download--v3 .lp-download__perks i {
  color: #b8860b;
}

.lp-download--v3 .lp-download__cta-col {
  flex: 0 1 430px;
}

.lp-download--v3 .lp-download__cta-panel {
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(8, 8, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 36px rgba(30, 58, 95, 0.28);
  backdrop-filter: blur(14px);
}

.lp-download--v3 .lp-store-badges--cta-v3 {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.55rem;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--direct {
  background: linear-gradient(145deg, #2dd4bf 0%, #14b8a6 100%);
  border: none;
  color: #111827;
  box-shadow: 0 10px 22px rgba(30, 58, 95, 0.22);
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--direct .lp-store-badge__icon {
  background: rgba(30, 58, 95, 0.82);
  color: #2dd4bf;
  border: none;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--direct .lp-store-badge__text small {
  color: rgba(30, 58, 95, 0.58);
  font-weight: 800;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--direct .lp-store-badge__text strong {
  color: #0a0a0c;
  font-size: 1rem;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--play {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--play .lp-store-badge__icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #2dd4bf;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--play .lp-store-badge__text small {
  color: rgba(255, 255, 255, 0.58);
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge--play .lp-store-badge__text strong {
  color: #fff;
  font-size: 1rem;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badge:hover {
  transform: translateY(-2px);
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badges__or {
  flex: 0 0 auto;
  width: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
}

.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badges__or::before,
.lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badges__or::after {
  display: none;
}

@media (max-width: 900px) {
  .lp-download--v3 .lp-download__grid {
    max-width: 540px;
  }

  .lp-download--v3 h2 {
    max-width: none;
  }

  .lp-download--v3 .lp-store-badges--cta-v3 {
    flex-direction: column;
  }

  .lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badges__or {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badges__or::before,
  .lp-download--v3 .lp-store-badges--cta-v3 .lp-store-badges__or::after {
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  }
}

@media (max-width: 600px) {
  .lp-download--v3 {
    padding: 1.1rem 0.95rem;
    border-radius: 18px;
  }

  .lp-download--v3 .lp-download__cta-panel {
    padding: 0.75rem;
  }

  .lp-download--v3 .lp-download__perks {
    justify-content: center;
  }
}

/* ── Download CTA v2 (legacy) ── */
.lp-download--v2 {
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 255, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(30, 58, 95, 0.08), transparent 50%),
    linear-gradient(145deg, #5eead4 0%, #2dd4bf 38%, #14b8a6 72%, #c99006 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(30, 58, 95, 0.06) inset,
    0 28px 60px rgba(30, 58, 95, 0.22),
    0 8px 20px rgba(160, 110, 0, 0.28);
}

.lp-download--v2 .lp-download__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.06) 0 1px, transparent 1px);
  background-size: 24px 24px, 18px 18px;
  pointer-events: none;
}

.lp-download--v2 .lp-download__glow {
  top: -30%;
  left: auto;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.35), transparent 65%);
}

.lp-download--v2 .lp-download__eyebrow {
  background: rgba(30, 58, 95, 0.72);
  border-color: rgba(30, 58, 95, 0.15);
  color: #2dd4bf;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  letter-spacing: 0.12em;
}

.lp-download--v2 .lp-download__tag {
  background: rgba(30, 58, 95, 0.08);
  border-color: rgba(30, 58, 95, 0.12);
  color: rgba(30, 58, 95, 0.82);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
}

.lp-download--v2 h2 {
  max-width: none;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0a0a0c;
}

.lp-download--v2 p {
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  color: rgba(30, 58, 95, 0.72);
  line-height: 1.7;
}

.lp-download--v2 .lp-download__perks li {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(30, 58, 95, 0.1);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-weight: 700;
  color: #0a0a0c;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.lp-download--v2 .lp-download__cta-panel {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 36px rgba(30, 58, 95, 0.14);
  backdrop-filter: blur(12px);
}

.lp-download--v2 .lp-download__cta-label {
  color: rgba(30, 58, 95, 0.55);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  text-align: center;
}

.lp-download--v2 .lp-store-badges--cta-v2 {
  flex-direction: column;
  gap: 0.65rem;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  transition:
    transform 0.22s var(--lp-ease),
    box-shadow 0.22s var(--lp-ease),
    border-color 0.22s var(--lp-ease);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--direct {
  background: linear-gradient(135deg, #0d0d10 0%, #1a1a22 55%, #0a0a0c 100%);
  border: 2px solid #2dd4bf;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.25) inset,
    0 12px 28px rgba(30, 58, 95, 0.28),
    0 4px 12px rgba(45, 212, 191, 0.15);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--direct .lp-store-badge__icon {
  background: linear-gradient(145deg, #2dd4bf, #14b8a6);
  border: none;
  color: #0a0a0c;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.4);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--direct .lp-store-badge__text small {
  color: #2dd4bf;
  opacity: 1;
  font-weight: 800;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--direct .lp-store-badge__text strong {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--play {
  background: #fff;
  border: 2px solid #0a0a0c;
  color: #0a0a0c;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 24px rgba(30, 58, 95, 0.1);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--play .lp-store-badge__icon {
  background: #0a0a0c;
  border: none;
  color: #2dd4bf;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--play .lp-store-badge__text small {
  color: rgba(30, 58, 95, 0.55);
  opacity: 1;
  font-weight: 700;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--play .lp-store-badge__text strong {
  color: #0a0a0c;
  font-weight: 800;
  font-size: 1.05rem;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge:hover {
  transform: translateY(-3px) scale(1.01);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--direct:hover {
  border-color: #5eead4;
  box-shadow:
    0 0 0 1px rgba(255, 229, 102, 0.35) inset,
    0 18px 36px rgba(30, 58, 95, 0.32),
    0 6px 16px rgba(45, 212, 191, 0.25);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge--play:hover {
  background: #f8f8fa;
  border-color: #2dd4bf;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 30px rgba(30, 58, 95, 0.14),
    0 0 0 3px rgba(45, 212, 191, 0.2);
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badges__or {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.15rem 0;
  color: rgba(30, 58, 95, 0.45);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
}

.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badges__or::before,
.lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badges__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.15), transparent);
}

@media (max-width: 900px) {
  .lp-download--v2 .lp-download__grid {
    max-width: 520px;
  }

  .lp-download--v2 h2 {
    max-width: 16ch;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .lp-download--v2 {
    padding: 1.2rem 1rem;
    border-radius: 20px;
  }

  .lp-download--v2 .lp-download__cta-panel {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .lp-download--v2 .lp-store-badges--cta-v2 .lp-store-badge {
    padding: 0.82rem 0.95rem;
  }
}

/* ── Ad popup ── */
.lp-ad-popup {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.lp-ad-popup[hidden] {
  display: none !important;
}

body.lp-ad-popup-open {
  overflow: hidden;
}

.lp-ad-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: lp-ad-popup-fade-in 0.28s ease;
}

.lp-ad-popup__card {
  position: relative;
  width: min(100%, 20.5rem);
  overflow: hidden;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 24px 48px rgba(30, 58, 95, 0.28);
  animation: lp-ad-popup-slide-up 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
}

.lp-ad-popup__close {
  position: absolute;
  top: 0.55rem;
  inset-inline-end: 0.55rem;
  z-index: 4;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.18);
  transition: transform 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-ad-popup__card--media .lp-ad-popup__close {
  background: rgba(30, 58, 95, 0.42);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.lp-ad-popup__close:hover {
  transform: scale(1.05);
}

.lp-ad-popup__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 7.25rem;
  overflow: hidden;
  background: #1e3a5f;
}

.lp-ad-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-ad-popup__content {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: 1rem 1rem 0.95rem;
  text-align: center;
  min-width: 0;
}

.lp-ad-popup__content h2 {
  margin: 0 0 0.4rem;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0a0a0c;
}

.lp-ad-popup__content p {
  margin: 0 0 0.8rem;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(30, 58, 95, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-ad-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}

.lp-ad-popup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d0d10 0%, #1a1a22 100%);
  border: 2px solid #2dd4bf;
  color: #fff;
  text-decoration: none;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-ad-popup__cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #15151c 0%, #22222c 100%);
}

.lp-ad-popup__cta i {
  font-size: 0.8rem;
  flex-shrink: 0;
}

.lp-ad-popup__dismiss {
  width: 100%;
  min-height: 34px;
  padding: 0.35rem 0.5rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(30, 58, 95, 0.48);
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.lp-ad-popup__dismiss:hover {
  color: #111827;
  background: rgba(30, 58, 95, 0.04);
}

@keyframes lp-ad-popup-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lp-ad-popup-slide-up {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .lp-ad-popup {
    padding: 0.75rem;
    align-items: center;
  }

  .lp-ad-popup__card {
    width: min(100%, 19.5rem);
    border-radius: 1rem;
  }

  .lp-ad-popup__media {
    height: 6.5rem;
  }
}

/* ── Stats ── */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.lp-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.lp-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.lp-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ── Footer ── */
.lp-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: none;
  background: #1e3a5f;
  color: rgba(255, 255, 255, 0.72);
}

.lp-footer__accent {
  position: relative;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.65) 22%, rgba(255, 255, 255, 0.2) 50%, rgba(45, 212, 191, 0.65) 78%, transparent);
}

.lp-footer__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 68% 55% at 10% 0%, rgba(45, 212, 191, 0.1), transparent 56%),
    radial-gradient(ellipse 48% 40% at 96% 100%, rgba(20, 184, 166, 0.12), transparent 50%),
    linear-gradient(180deg, #1e3a5f 0%, #1e3a5f 100%);
  pointer-events: none;
}

.lp-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3.6rem 1.25rem calc(1.65rem + env(safe-area-inset-bottom, 0px));
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: minmax(380px, 1.35fr) minmax(0, 1.65fr);
  gap: 2.2rem 2.8rem;
  align-items: start;
  margin-bottom: 2.15rem;
}

.lp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: none;
}

.lp-footer__brand-panel,
.lp-footer__connect {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 14, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 38px rgba(30, 58, 95, 0.18);
}

.lp-footer__brand-panel {
  padding: 1.4rem 1.35rem 1.3rem;
}

.lp-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  width: 100%;
}

.lp-footer__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(45, 212, 191, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
  text-decoration: none;
  color: #fff;
}

.lp-footer__logo-ring {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.lp-footer__logo-ring img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 160px;
  border-radius: 0;
  object-fit: contain;
}

.lp-footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lp-footer__logo-text strong {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-footer__logo-text small {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(45, 212, 191, 0.88);
  line-height: 1.4;
}

.lp-footer__about p {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.9;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
}

.lp-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.lp-footer__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.74);
}

.lp-footer__trust i {
  color: #2dd4bf;
  font-size: 0.7rem;
}

.lp-footer__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-footer__quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.81rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s var(--lp-ease), border-color 0.2s, transform 0.2s, color 0.2s;
}

.lp-footer__quick-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  color: #fff;
}

.lp-footer__quick-btn--primary {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.24), rgba(45, 212, 191, 0.08));
  border-color: rgba(45, 212, 191, 0.24);
  color: #fff5bc;
}

.lp-footer__quick-btn--primary:hover {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.34), rgba(45, 212, 191, 0.14));
  border-color: rgba(45, 212, 191, 0.38);
}

.lp-footer__connect {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 1.15rem 1.1rem 1rem;
}

.lp-footer__connect-title {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.lp-footer__social-row,
.lp-footer__payments-row {
  display: flex;
  gap: 0.5rem;
}

.lp-footer__social-row {
  flex-wrap: wrap;
}

.lp-footer__payments-row {
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.lp-footer__payments-row::-webkit-scrollbar {
  height: 6px;
}

.lp-footer__payments-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.lp-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s var(--lp-ease), border-color 0.2s, color 0.2s, transform 0.2s;
}

.lp-footer__social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.lp-footer__social-link--static {
  opacity: 0.55;
  cursor: default;
}

.lp-footer__social-link--whatsapp:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
}

.lp-footer__social-link--facebook:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.45);
  background: rgba(24, 119, 242, 0.12);
}

.lp-footer__social-link--instagram:hover {
  color: #f472b6;
  border-color: rgba(244, 114, 182, 0.45);
  background: rgba(244, 114, 182, 0.12);
}

.lp-footer__social-link--x:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.lp-footer__social-link--linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.45);
  background: rgba(10, 102, 194, 0.12);
}

.lp-footer__social-link--snapchat:hover {
  color: #fffc00;
  border-color: rgba(255, 252, 0, 0.45);
  background: rgba(255, 252, 0, 0.12);
}

.lp-footer__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 3.15rem;
  height: 2.2rem;
  padding: 0.18rem 0.38rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.98);
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(30, 58, 95, 0.14);
}

.lp-footer__pay-logo {
  display: block;
  width: auto;
  height: 1.4rem;
  max-width: 4rem;
  object-fit: contain;
}

.lp-footer__pay-badge--bankak .lp-footer__pay-logo {
  height: 1.58rem;
  max-width: 2.95rem;
}

.lp-footer__pay-badge--cashi .lp-footer__pay-logo {
  height: 1.65rem;
  max-width: 3.05rem;
}

.lp-footer__pay-badge--bravo .lp-footer__pay-logo {
  height: 1.55rem;
  max-width: 2.85rem;
}

.lp-footer__pay-badge--vodafone-cash .lp-footer__pay-logo {
  height: 1.3rem;
  max-width: 4.25rem;
}

.lp-footer__pay-badge--paypal .lp-footer__pay-logo {
  height: 1.2rem;
  max-width: 3.2rem;
}

.lp-footer__pay-badge--stripe {
  background: #fff;
}

.lp-footer__pay-badge--stripe .lp-footer__pay-logo {
  height: 1rem;
  max-width: 3.7rem;
}

.lp-footer__col {
  padding: 1.15rem 1.1rem 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 30px rgba(30, 58, 95, 0.12);
}

.lp-footer__col h4 {
  margin: 0 0 0.95rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.lp-footer__col h4::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 0.45rem;
  border-radius: 50%;
  background: #2dd4bf;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.45);
}

.lp-footer__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.58rem 0.45rem;
  margin: 0 -0.35rem;
  border: none;
  border-radius: 12px;
  background: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-footer__link span {
  flex: 1;
  min-width: 0;
}

.lp-footer__link i {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.74);
  transition: background 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

.lp-footer__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.lp-footer__link:hover i {
  background: rgba(45, 212, 191, 0.14);
  border-color: rgba(45, 212, 191, 0.28);
  color: #5eead4;
}

.lp-footer__link--btn {
  appearance: none;
}

.lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.lp-footer__bottom-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
}

.lp-footer__bottom-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.46);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer__bottom-nav a:hover {
  color: #2dd4bf;
}

.lp-footer__bottom-nav a:not(:last-child)::after {
  content: '·';
  margin-inline-start: 0.85rem;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

@media (max-width: 900px) {
  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-footer__brand {
    max-width: none;
  }

  .lp-footer__about p {
    max-width: none;
  }

  .lp-footer__nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lp-download__grid {
    flex-direction: column;
    text-align: center;
    max-width: 560px;
  }

  .lp-download__brand,
  .lp-download__cta-col {
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .lp-download__hero {
    flex-direction: column;
    align-items: center;
  }

  .lp-download__brand .lp-download__icon-ring {
    margin-inline: auto;
  }

  .lp-download h2,
  .lp-download p {
    margin-inline: auto;
  }

  .lp-download__perks {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .lp-strip-cta {
    margin-top: 0.75rem;
  }

  .lp-footer__inner {
    padding:
      2.35rem 1rem
      calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  .lp-footer__nav {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .lp-download {
    padding: 1.2rem 0.95rem 1rem;
    border-radius: 24px;
  }

  .lp-download__eyebrow,
  .lp-footer__eyebrow,
  .lp-download__cta-label {
    font-size: 0.66rem;
  }

  .lp-download__cta-panel,
  .lp-footer__brand-panel,
  .lp-footer__connect {
    border-radius: 20px;
  }

  .lp-footer__col {
    padding: 0.9rem 0.9rem 0.75rem;
  }

  .lp-footer__col h4 {
    margin-bottom: 0.7rem;
    font-size: 0.76rem;
  }

  .lp-footer__link {
    font-size: 0.82rem;
    padding: 0.38rem 0.3rem;
  }

  .lp-footer__link i {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }

  .lp-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lp-footer__bottom-nav {
    justify-content: center;
  }
}

/* ── Modal ── */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px);
}

.lp-modal[hidden] {
  display: none;
}

.lp-modal__box {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15,23,42,0.2);
}

.lp-modal__box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.lp-modal__box p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.lp-modal__box ol {
  margin: 0 0 1.25rem;
  padding-inline-start: 1.25rem;
  color: var(--lp-text);
  font-size: 0.9rem;
  line-height: 1.8;
}

.lp-modal__note {
  font-size: 0.85rem !important;
  color: var(--lp-primary) !important;
  font-weight: 700;
  margin-bottom: 1rem !important;
}

.lp-modal__box--desktop {
  text-align: center;
  max-width: 420px;
}

.lp-desktop-only__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #2d4a73, #334155);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.2);
}

.lp-desktop-only__msg {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--lp-text) !important;
}

.lp-desktop-only__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.lp-desktop-only__actions .lp-btn {
  justify-content: center;
  width: 100%;
}

/* ── Toast ── */
.lp-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: #2d4a73;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 300;
  box-shadow: 0 12px 32px rgba(15,23,42,0.25);
  transition: transform 0.3s var(--lp-ease);
  max-width: min(90vw, 360px);
  text-align: center;
}

.lp-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lp-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .lp-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .lp-hero__lead {
    margin-inline: auto;
  }

  .lp-hero__actions {
    justify-content: center;
  }

  .lp-hero__note {
    justify-content: center;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-hero-dots {
    justify-content: center;
  }

  .lp-features,
  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 102;
  }

  body.lp-nav-open .lp-header {
    visibility: hidden;
    pointer-events: none;
  }

  .lp-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(8, 10, 18, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--lp-ease), visibility 0.28s;
    cursor: pointer;
  }

  .lp-nav-overlay:not([hidden]) {
    opacity: 1;
    visibility: visible;
  }

  body.lp-nav-open {
    overflow: hidden;
  }

  .lp-nav {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    inset-inline-start: auto;
    width: min(92vw, 340px);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    z-index: 300;
    overflow: hidden;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.32s var(--lp-ease), visibility 0.32s;
    pointer-events: none;
  }

  [dir="rtl"] .lp-nav {
    inset-inline-start: 0;
    inset-inline-end: auto;
    transform: translate3d(100%, 0, 0);
  }

  .lp-nav.open {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  [dir="rtl"] .lp-nav.open {
    transform: translate3d(0, 0, 0);
  }

  .lp-nav__panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 40px rgba(30, 58, 95, 0.18);
  }

  [dir="rtl"] .lp-nav__panel {
    box-shadow: 12px 0 40px rgba(30, 58, 95, 0.18);
  }

  .lp-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding:
      calc(0.85rem + env(safe-area-inset-top, 0px))
      1rem
      0.85rem;
    border-bottom: 1px solid var(--lp-border);
    flex-shrink: 0;
    min-height: 58px;
    background: #fff;
  }

  .lp-nav__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .lp-nav__close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.18);
  }

  .lp-nav__close:hover {
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.22);
  }

  .lp-nav__close:active {
    transform: scale(0.94);
  }

  .lp-nav__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0.35rem 0.85rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .lp-nav__body > .lp-nav__link,
  .lp-nav__body > .lp-nav-dropdown {
    border-bottom: 1px solid #f0f0f0;
  }

  .lp-nav__avatar--desktop {
    display: none !important;
  }

  .lp-nav__footer {
    flex-shrink: 0;
    padding:
      0.85rem 1rem
      calc(1rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--lp-border);
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  }

  .lp-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(45, 212, 191, 0.35);
  }

  .lp-nav__link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .lp-nav__link.active {
    background: rgba(30, 58, 95, 0.06);
    color: var(--lp-text);
  }

  .lp-nav .lp-lang {
    margin-top: 0.5rem;
    justify-content: center;
    padding: 0.2rem;
  }

  .lp-nav .lp-lang a,
  .lp-nav .lp-lang__flag {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.55rem;
    justify-content: center;
  }

  .lp-nav .lp-btn--sm {
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }

  .lp-nav a.lp-nav__mobile-hide {
    display: none;
  }

  .lp-nav__footer {
    display: block;
  }

  .lp-nav__tools {
    width: 100%;
    justify-content: center;
    margin-inline-start: 0;
    padding-inline-start: 0;
    border-inline-start: none;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--lp-border);
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .lp-nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0.65rem;
    font-size: 0.95rem;
    border-radius: 0;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--lp-text);
  }

  .lp-nav-dropdown.is-open .lp-nav-dropdown__trigger {
    background: #fafafa;
  }

  .lp-nav-dropdown .lp-mega-panel {
    position: static;
    width: 100%;
    max-width: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem;
    margin: 0;
    background: transparent;
  }

  .lp-nav-dropdown .lp-mega-panel__inner {
    padding: 0.25rem 0.35rem 0.5rem;
    gap: 0.75rem;
  }

  .lp-nav .lp-mega-plans {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .lp-nav .lp-mega-plan {
    padding: 0.7rem 0.75rem;
    gap: 0.3rem;
  }

  .lp-nav .lp-mega-plan__features,
  .lp-nav .lp-mega-plan .lp-btn {
    display: none;
  }

  .lp-nav .lp-mega-plan__price {
    font-size: 0.88rem;
  }

  .lp-nav .lp-mega-item {
    padding: 0.55rem 0.5rem;
    gap: 0.6rem;
  }

  .lp-nav .lp-mega-item__icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.82rem;
  }

  .lp-nav .lp-mega-item__text small {
    display: none;
  }
}

@media (max-width: 600px) {
  .lp-hero {
    padding: 1.25rem 1rem 2.5rem;
    min-height: auto;
  }

  .lp-hero__grid {
    gap: 1.75rem;
  }

  .lp-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    line-height: 1.2;
  }

  .lp-hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
  }

  .lp-phone {
    width: min(88%, 268px);
  }

  .lp-phone__screen {
    min-height: 460px;
  }

  .lp-features,
  .lp-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lp-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1rem;
    text-align: start;
  }

  .lp-feature__icon {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .lp-feature h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .lp-feature p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .lp-step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-align: start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
  }

  .lp-step__num {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .lp-stats {
    margin-top: 1.75rem;
    gap: 0.65rem;
  }

  .lp-stat {
    padding: 0.85rem 0.5rem;
    border-radius: 14px;
  }

  .lp-stat strong {
    font-size: 1.35rem;
  }

  .lp-stat span {
    font-size: 0.78rem;
  }

  .lp-section {
    padding: 2.75rem 1rem;
  }

  .lp-section--clients {
    padding-block: 2.25rem;
  }

  .lp-section__head {
    margin-bottom: 1.65rem;
  }

  .lp-section__head h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .lp-section__head p {
    font-size: 0.9rem;
  }

  .lp-service-card {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.1rem;
  }

  .lp-service-card h3 {
    font-size: 1rem;
  }

  .lp-service-card p {
    font-size: 0.9rem;
  }

  .lp-service-card__foot {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .lp-phone__float {
    display: none;
  }

  .lp-strip-cta {
    padding: 2rem 0.85rem calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  .lp-download {
    padding: 1.35rem 1rem 1.2rem;
    border-radius: 20px;
  }

  .lp-download__grid {
    gap: 1rem;
    max-width: 100%;
  }

  .lp-download__icon-ring {
    width: 68px;
    height: 68px;
  }

  .lp-download__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .lp-download__brand .lp-download__icon-ring {
    margin-bottom: 0.7rem;
  }

  .lp-download__tag {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.55rem;
  }

  .lp-download h2 {
    font-size: clamp(1.18rem, 5.2vw, 1.4rem);
    margin-bottom: 0.35rem;
  }

  .lp-download p {
    font-size: 0.84rem;
    margin-bottom: 0.75rem;
    line-height: 1.55;
  }

  .lp-hero__actions,
  .lp-download__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero .lp-btn,
  .lp-section__cta .lp-btn,
  .lp-download .lp-btn,
  .lp-faq-cta .lp-btn {
    width: 100%;
  }

  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-main {
    padding-top: 64px;
  }

  .lp-header__inner {
    padding: 0.75rem 1rem;
  }

  .lp-brand--logo img {
    height: 48px;
    max-width: 180px;
  }

  .lp-page-hero {
    padding: 2.25rem 1rem 2rem;
  }

  .lp-page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ── Store badges (تحميل احترافي) ── */
.lp-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.lp-store-badges--section {
  width: 100%;
  flex-wrap: nowrap;
  align-items: stretch;
}

.lp-store-badges--section .lp-store-badge {
  flex: 1;
  min-width: 0;
  justify-content: flex-start;
}

.lp-store-badges--hero {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.lp-store-badges__or {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(10, 10, 12, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 0.2rem;
}

[dir="ltr"] .lp-store-badges--hero {
  justify-content: flex-start;
}

.lp-store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 210px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(12, 12, 15, 0.72);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 16px 34px rgba(30, 58, 95, 0.2),
    0 4px 10px rgba(30, 58, 95, 0.1);
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease);
}

.lp-store-badge__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.12) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--lp-ease);
  pointer-events: none;
}

.lp-store-badge:hover .lp-store-badge__shine {
  transform: translateX(120%);
}

.lp-store-badge:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 22px 42px rgba(30, 58, 95, 0.24),
    0 6px 14px rgba(30, 58, 95, 0.12);
}

.lp-store-badge:active {
  transform: translateY(-1px);
}

.lp-store-badge__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
}

.lp-store-badge__icon--play {
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
}

.lp-store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: start;
}

.lp-store-badge__text small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.7;
  text-transform: uppercase;
}

.lp-store-badge__text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-store-badge--play {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(10, 18, 34, 0.82);
}

.lp-store-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.1rem auto 0;
  padding: 0.55rem 1rem;
  max-width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-muted);
  background: rgba(30, 58, 95, 0.03);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  line-height: 1.5;
}

.lp-store-hint i {
  opacity: 0.55;
  flex-shrink: 0;
}

.lp-store-badges--hero + .lp-hero__note,
.lp-store-badges--hero ~ .lp-store-hint {
  text-align: start;
}

.lp-download .lp-store-badges {
  margin: 0;
  gap: 0.7rem;
}

.lp-download .lp-store-badges__or {
  color: rgba(10, 10, 12, 0.42);
  font-size: 0.72rem;
}

.lp-download .lp-store-hint {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .lp-download__grid {
    flex-direction: column;
    text-align: center;
    max-width: 560px;
  }

  .lp-download__brand {
    text-align: center;
  }

  .lp-download__brand .lp-download__icon-ring {
    margin-inline: auto;
  }

  .lp-download p {
    margin-inline: auto;
  }

  .lp-download__perks {
    justify-content: center;
  }

  .lp-store-badges--section {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.55rem;
  }

  .lp-store-badges--section .lp-store-badge {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .lp-store-badges--section .lp-store-badges__or {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.05rem 0;
  }

  .lp-store-badges--section .lp-store-badges__or::before,
  .lp-store-badges--section .lp-store-badges__or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(10, 10, 12, 0.14);
  }
}

@media (max-width: 900px) {
  .lp-store-badges--hero {
    justify-content: center;
  }

  .lp-store-badges--hero + .lp-hero__note {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .lp-download {
    padding: 1.25rem 0.9rem 1.1rem;
    border-radius: 18px;
  }

  .lp-download__cta-col {
    width: 100%;
  }

  .lp-store-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .lp-store-badges__or {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.05rem 0;
  }

  .lp-store-badges__or::before,
  .lp-store-badges__or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(30, 58, 95, 0.1);
  }

  .lp-download .lp-store-badges__or::before,
  .lp-download .lp-store-badges__or::after {
    background: rgba(30, 58, 95, 0.12);
  }

  .lp-store-badge {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0.72rem 0.9rem;
    gap: 0.7rem;
    border-radius: 16px;
  }

  .lp-store-badge__icon {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
    border-radius: 10px;
  }

  .lp-store-badge__text strong {
    font-size: 0.98rem;
  }

  .lp-store-badge__text {
    align-items: center;
    text-align: center;
  }

  .lp-download__perks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.32rem;
  }

  .lp-download__perks li {
    font-size: 0.68rem;
    padding: 0.3rem 0.52rem;
  }
}

[dir="ltr"] .lp-nav a:not(.lp-btn) {
  text-align: left;
}

/* ── v2: Clients marquee ── */
.lp-section--clients {
  padding-block: 3.25rem;
  background: #fff;
  border-block: 1px solid var(--lp-border);
  overflow: hidden;
}

.lp-section--soft {
  background: linear-gradient(180deg, #fff, var(--lp-bg));
}

.lp-clients__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #ccfbf1;
  border: 1px solid rgba(20, 184, 166, 0.35);
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-clients {
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* شبكة ثابتة كثيفة لعرض أكبر عدد من الشعارات */
.lp-clients--wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.5rem;
}

.lp-clients__item {
  box-sizing: border-box;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.45rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lp-clients__item:hover {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.06);
  transform: translateY(-1px);
}

.lp-clients__item--text {
  min-height: 72px;
}

.lp-clients__item a,
.lp-clients__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.lp-clients__item img {
  max-height: 36px;
  max-width: 88px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.lp-clients__mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #5eead4, #14b8a6);
  color: #1e3a5f;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.lp-clients__name {
  font-size: 0.68rem;
  font-weight: 800;
  color: #1e3a5f;
  text-align: center;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}

.lp-clients__empty {
  margin: 0;
  text-align: center;
  color: var(--lp-muted);
  font-weight: 600;
}

@media (min-width: 1100px) {
  .lp-clients--wall {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 0.45rem;
  }
}

@media (max-width: 720px) {
  .lp-clients--wall {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 0.4rem;
  }

  .lp-clients__item {
    min-height: 66px;
    padding: 0.45rem 0.35rem;
  }

  .lp-clients__item img {
    max-height: 30px;
    max-width: 72px;
  }

  .lp-clients__name {
    font-size: 0.62rem;
  }
}

/* ── v2: Services ── */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.lp-services-grid--full {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .lp-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .lp-services-grid,
  .lp-services-grid--full {
    grid-template-columns: 1fr;
  }
}

.lp-service-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.25rem;
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s;
}

.lp-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.lp-service-card--large {
  flex-direction: column;
  padding: 1.5rem;
}

.lp-service-card--has-image {
  flex-direction: column;
}

.lp-service-card__thumb {
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
}

.lp-service-card__thumb img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.lp-service-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #1e3a5f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.lp-service-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin-bottom: 0.35rem;
}

.lp-service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.lp-service-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-service-card__rating {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #d97706;
}

.lp-service-card__rating span {
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-service-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--lp-border);
}

.lp-service-card__link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--lp-primary);
}

.lp-section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── v2: Inner pages ── */
.lp-page-hero {
  padding: 3rem 1.25rem 2.5rem;
  background: var(--lp-gradient);
  color: #fff;
}

.lp-page-hero--compact {
  padding-bottom: 2rem;
}

.lp-page-hero__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}

.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.65);
}

.lp-breadcrumb a:hover {
  color: #fff;
}

.lp-page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
}

.lp-page-hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
}

.lp-prose {
  max-width: 760px;
}

.lp-about-card,
.lp-legal-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(15,23,42,0.06);
}

.lp-about-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 28px rgba(15,23,42,0.12);
}

.lp-about-card p,
.lp-legal-card p {
  margin: 0 0 1rem;
  color: var(--lp-text);
  line-height: 1.85;
  font-size: 1rem;
}

.lp-about-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lp-border);
}

.lp-legal-updated {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
  font-size: 0.85rem !important;
  color: var(--lp-muted) !important;
}

.lp-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--lp-muted);
}

.lp-empty i {
  font-size: 2.5rem;
  opacity: 0.25;
  margin-bottom: 0.75rem;
}

/* ── Services page ── */
.lp-page-hero--services {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.25rem 3rem;
}

.lp-page-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

.lp-page-hero__split {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: end;
}

.lp-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}

.lp-services-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.75rem;
  min-width: min(100%, 360px);
}

.lp-services-stat {
  padding: 1rem 0.85rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  text-align: center;
}

.lp-services-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.lp-services-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
  font-weight: 600;
}

.lp-services-stat--accent strong {
  font-size: 1.15rem;
}

.lp-section--services {
  padding-top: 2.25rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.lp-services-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(15,23,42,0.05);
}

.lp-services-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lp-services-filter {
  border: 1px solid transparent;
  background: transparent;
  color: var(--lp-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease), border-color 0.2s;
}

.lp-services-filter:hover {
  background: rgba(15,23,42,0.04);
  color: var(--lp-text);
}

.lp-services-filter.is-active {
  background: #1e3a5f;
  color: #fff;
  border-color: #1e3a5f;
}

.lp-services-toolbar__count {
  flex-shrink: 0;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lp-bg);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lp-muted);
}

.lp-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .lp-svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .lp-svc-grid {
    grid-template-columns: 1fr;
  }
}

.lp-svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.35rem;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(15,23,42,0.04);
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease), border-color 0.25s;
}

.lp-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.09);
  border-color: rgba(15,23,42,0.12);
}

.lp-svc-card__thumb {
  margin: -0.35rem -0.35rem 0.85rem;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f3f3;
}

.lp-svc-card__thumb img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.lp-svc-card--has-image .lp-svc-card__head {
  margin-bottom: 0.65rem;
}

.lp-svc-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lp-svc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2d4a73, #334155);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(15,23,42,0.18);
}

.lp-svc-card__pill {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--lp-muted);
  white-space: nowrap;
}

.lp-svc-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.35;
}

.lp-svc-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lp-svc-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #b45309;
}

.lp-svc-card__stars {
  display: inline-flex;
  gap: 0.1rem;
  font-size: 0.72rem;
}

.lp-svc-card__star--dim {
  opacity: 0.25;
}

.lp-svc-card__rating small {
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-svc-card__foot {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
}

.lp-svc-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  background: #1e3a5f;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.2s var(--lp-ease), transform 0.2s;
}

.lp-svc-card__btn:hover {
  background: #2d4a73;
  transform: translateY(-1px);
}

.lp-services-empty-filter {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--lp-muted);
}

.lp-services-empty-filter i {
  font-size: 2rem;
  opacity: 0.35;
  margin-bottom: 0.65rem;
}

.lp-services-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.lp-services-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15,23,42,0.04);
}

.lp-services-step__num {
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-services-step__icon {
  width: 52px;
  height: 52px;
  margin: 0.25rem auto 0.85rem;
  border-radius: 14px;
  background: var(--lp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #1e3a5f;
}

.lp-services-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 900;
}

.lp-services-step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--lp-muted);
  line-height: 1.65;
}

.lp-empty--card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 3.5rem 1.5rem;
  box-shadow: 0 16px 48px rgba(15,23,42,0.06);
}

.lp-empty--card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--lp-text);
}

.lp-empty--card p {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  margin-inline: auto;
}

.lp-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: var(--lp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--lp-muted);
  opacity: 0.5;
}

@media (max-width: 960px) {
  .lp-page-hero__split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-services-stats {
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
  }

  .lp-services-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-services-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-services-toolbar__count {
    align-self: flex-end;
  }

  .lp-services-stats {
    grid-template-columns: 1fr 1fr;
  }

  .lp-services-stat:last-child {
    grid-column: 1 / -1;
  }
}

[dir="ltr"] .lp-svc-card__btn i {
  transform: scaleX(-1);
}

/* ── About page ── */
.lp-page-hero--about {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.25rem 3rem;
}

.lp-section--about {
  padding-top: 2.25rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.lp-about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.lp-about-side__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 16px 48px rgba(15,23,42,0.06);
  position: sticky;
  top: 5.5rem;
}

.lp-about-side__logo-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(145deg, #2d4a73, #475569);
  box-shadow: 0 14px 36px rgba(15,23,42,0.18);
}

.lp-about-side__logo {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: contain;
  background: #fff;
}

.lp-about-side__name {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
}

.lp-about-side__tag {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-about-side__cr {
  margin: 0 0 1.15rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-about-side__cr strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--lp-text);
  letter-spacing: 0.02em;
}

.lp-about-side__perks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-about-side__perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-about-side__perks i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex-shrink: 0;
}

.lp-about-side__actions {
  display: grid;
  gap: 0.65rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--lp-border);
}

.lp-about-side__actions .lp-btn {
  justify-content: center;
  width: 100%;
}

.lp-about-story__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 12px 40px rgba(15,23,42,0.05);
}

.lp-about-story__label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lp-muted);
}

.lp-about-story__body p {
  margin: 0 0 1.15rem;
  color: var(--lp-text);
  line-height: 1.9;
  font-size: 1.02rem;
}

.lp-about-story__body p:last-child {
  margin-bottom: 0;
}

.lp-about-story {
  display: grid;
  gap: 1.15rem;
}

.lp-about-vmg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp-about-vmg__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.04);
}

.lp-about-vmg__card--wide {
  grid-column: 1 / -1;
}

.lp-about-vmg__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--lp-green-muted);
  color: var(--lp-navy);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.lp-about-vmg__card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 900;
}

.lp-about-vmg__card p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.lp-about-goals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-about-goals li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-about-goals i {
  color: var(--lp-green-dark);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lp-about-branches--digital {
  background: linear-gradient(155deg, #1e3a5f 0%, #10141c 48%, #1e3a5f 100%);
  border: 1px solid rgba(45, 212, 191, 0.14);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.15rem;
  box-shadow:
    0 20px 50px rgba(30, 58, 95, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-about-branches--digital .lp-about-branches__title {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
}

.lp-about-branches__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.9rem;
}

.lp-about-map-shell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 40px rgba(30, 58, 95, 0.35);
}

.lp-about-map__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 72% 38%, rgba(45, 212, 191, 0.09), transparent 62%),
    radial-gradient(ellipse 40% 35% at 18% 62%, rgba(99, 102, 241, 0.07), transparent 58%);
}

.lp-about-map__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 100%);
}

.lp-about-map {
  position: relative;
  z-index: 1;
  height: clamp(300px, 44vw, 420px);
  background: #0b0f14;
}

.lp-about-map .leaflet-container {
  background: #0b0f14;
  font-family: var(--lp-font);
}

.lp-about-map .leaflet-control-attribution {
  background: rgba(8, 8, 12, 0.72);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px 0 0 0;
}

.lp-about-map .leaflet-control-attribution a {
  color: rgba(45, 212, 191, 0.75);
}

.lp-about-map .leaflet-control-zoom {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
  border-radius: 12px;
  overflow: hidden;
}

.lp-about-map .leaflet-control-zoom a {
  background: rgba(12, 12, 16, 0.92);
  color: #2dd4bf;
  border-color: rgba(255, 255, 255, 0.08);
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 1rem;
}

.lp-about-map .leaflet-control-zoom a:hover {
  background: rgba(45, 212, 191, 0.12);
  color: #5eead4;
}

.lp-map-marker {
  background: transparent;
  border: none;
}

.lp-map-marker__inner {
  position: relative;
  width: 44px;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-map-marker__pulse {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  border-radius: 50%;
  animation: lp-map-pulse 2.4s ease-out infinite;
}

.lp-map-marker--branch .lp-map-marker__pulse {
  background: rgba(45, 212, 191, 0.35);
}

.lp-map-marker--coverage .lp-map-marker__pulse {
  background: rgba(255, 255, 255, 0.18);
}

@keyframes lp-map-pulse {
  0% { transform: scale(0.55); opacity: 0.85; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.lp-map-marker__ring {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.lp-map-marker--branch .lp-map-marker__ring {
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.35);
}

.lp-map-marker__head {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #2d4a73;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.45);
}

.lp-map-marker--branch .lp-map-marker__head {
  border-color: #2dd4bf;
}

.lp-map-marker__head img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.lp-map-marker__pointer {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 11px solid #fff;
  filter: drop-shadow(0 3px 4px rgba(30, 58, 95, 0.35));
}

.lp-map-marker--branch .lp-map-marker__pointer {
  border-top-color: #2dd4bf;
}

.lp-map-marker__inner:hover .lp-map-marker__head {
  transform: translateY(-3px) scale(1.06);
  transition: transform 0.2s var(--lp-ease);
}

.lp-about-map-popup .leaflet-popup-content-wrapper {
  border-radius: 14px;
  background: rgba(10, 10, 14, 0.94);
  color: #fff;
  border: 1px solid rgba(45, 212, 191, 0.22);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.45);
  padding: 0;
}

.lp-about-map-popup .leaflet-popup-content {
  margin: 0.8rem 0.9rem;
  line-height: 1.4;
}

.lp-about-map-popup .leaflet-popup-tip {
  background: rgba(10, 10, 14, 0.94);
  border: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow: none;
}

.lp-about-map-popup .leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  padding: 0.35rem 0.45rem 0 0;
}

.lp-about-map-popup .leaflet-popup-close-button:hover {
  color: #2dd4bf;
}

.lp-about-map__popup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lp-about-map__popup img {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.lp-about-map__popup-tag {
  display: inline-block;
  margin-bottom: 0.3rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-about-map__popup-tag--branch {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.lp-about-map__popup-tag--coverage {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-about-map__popup strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
}

.lp-about-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.lp-about-map__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

.lp-about-map__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-about-map__legend-item--branch .lp-about-map__legend-dot {
  background: #2dd4bf;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.55);
}

.lp-about-map__legend-item--coverage .lp-about-map__legend-dot {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.lp-about-branches--digital .lp-about-map__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.lp-about-branches--digital .lp-about-map__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: background 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease), transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-about-branches--digital .lp-about-map__chip img {
  border-radius: 3px;
  flex-shrink: 0;
}

.lp-about-branches--digital .lp-about-map__chip:hover,
.lp-about-branches--digital .lp-about-map__chip.is-active {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.42);
  color: #5eead4;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.12);
  transform: translateY(-1px);
}

.lp-about-legal__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 900;
}

.lp-about-legal {
  background: linear-gradient(155deg, #5eead4 0%, #2dd4bf 52%, #14b8a6 100%);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(180, 130, 0, 0.18);
}

.lp-about-legal__company {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--lp-navy);
}

.lp-about-legal__cr {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(30, 58, 95, 0.72);
}

.lp-about-legal__cr strong {
  font-weight: 900;
  color: var(--lp-navy);
}

.lp-about-legal__note {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(30, 58, 95, 0.65);
  line-height: 1.6;
}

.lp-about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.lp-about-value {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.35rem 1.15rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15,23,42,0.04);
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s;
}

.lp-about-value:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.lp-about-value__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  background: #1e3a5f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.lp-about-value h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 900;
}

.lp-about-value p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--lp-muted);
  line-height: 1.65;
}

.lp-about-values--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .lp-about-values--services {
    grid-template-columns: 1fr;
  }
}
.lp-section--about-stats {
  padding: 2.5rem 1.25rem;
}

.lp-section--about-stats .lp-stats {
  margin: 0;
}

@media (max-width: 960px) {
  .lp-about-layout {
    grid-template-columns: 1fr;
  }

  .lp-about-side__card {
    position: static;
  }

  .lp-about-vmg {
    grid-template-columns: 1fr;
  }

  .lp-about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp-about-values {
    grid-template-columns: 1fr;
  }

  .lp-about-story__card {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Privacy page ── */
.lp-page-hero--privacy {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.25rem 3rem;
}

.lp-section--privacy {
  padding-top: 2.25rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.lp-privacy-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.lp-privacy-side__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  position: sticky;
  top: 5.5rem;
}

.lp-privacy-side__shield {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #1e3a5f, #334155);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.2);
}

.lp-privacy-side__card > h2 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}

.lp-privacy-highlights {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.lp-privacy-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-text);
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: var(--lp-bg);
}

.lp-privacy-highlights i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #1e3a5f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.lp-privacy-toc {
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
}

.lp-privacy-toc h3 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-privacy-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.lp-privacy-toc a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-muted);
  transition: background 0.2s var(--lp-ease), color 0.2s;
}

.lp-privacy-toc a:hover {
  background: rgba(30, 58, 95, 0.05);
  color: var(--lp-text);
}

.lp-privacy-toc__num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #1e3a5f;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-privacy-side__updated {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: var(--lp-bg);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-privacy-side__updated i {
  margin-inline-end: 0.35rem;
}

.lp-privacy-side__cta {
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
}

.lp-privacy-side__cta p {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-privacy-side__cta .lp-btn {
  width: 100%;
  justify-content: center;
}

.lp-privacy-intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a73 100%);
  color: #fff;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.15);
}

.lp-privacy-intro i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.lp-privacy-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.lp-privacy-sections {
  display: grid;
  gap: 1rem;
}

.lp-privacy-section {
  scroll-margin-top: 6rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.35rem 1.5rem 1.25rem;
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lp-privacy-section:hover {
  border-color: rgba(30, 58, 95, 0.12);
  box-shadow: 0 14px 40px rgba(30, 58, 95, 0.07);
}

.lp-privacy-section__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-privacy-section__num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #1e3a5f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-privacy-section__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1e3a5f;
  flex-shrink: 0;
}

.lp-privacy-section h3 {
  margin: 0;
  flex: 1;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.lp-privacy-section > p {
  margin: 0;
  padding-inline-start: calc(30px + 0.75rem + 42px + 0.75rem);
  font-size: 0.94rem;
  color: var(--lp-muted);
  line-height: 1.8;
}

.lp-privacy-fallback {
  max-width: none;
}

.lp-section--privacy-trust {
  padding: 2.25rem 1.25rem;
}

.lp-privacy-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lp-privacy-trust__item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-privacy-trust__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.65rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.lp-privacy-trust__item strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 960px) {
  .lp-privacy-layout {
    grid-template-columns: 1fr;
  }

  .lp-privacy-side__card {
    position: static;
  }

  .lp-privacy-section > p {
    padding-inline-start: 0;
    margin-top: 0.5rem;
  }

  .lp-privacy-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-privacy-intro {
    flex-direction: column;
    padding: 1.15rem 1.25rem;
  }

  .lp-privacy-section {
    padding: 1.15rem 1.1rem;
  }

  .lp-privacy-section__head {
    flex-wrap: wrap;
  }
}

/* ── Floating actions (WhatsApp + Assistant) ── */
.lp-fabs {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  inset-inline-start: 1.15rem;
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.65rem;
}

.lp-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  padding: 0;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.18);
  font-size: 1.35rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
  text-decoration: none;
}

.lp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 58, 95, 0.22);
}

.lp-fab:active {
  transform: scale(0.92);
}

.lp-fab--wa {
  background: #25d366;
}

.lp-fab--assistant {
  background: var(--lp-primary);
}

@media (max-width: 640px) {
  .lp-fabs {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    inset-inline-start: 0.85rem;
  }

  .lp-fab {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ── Assistant chat modal ── */
.lp-modal--chat {
  align-items: flex-end;
  padding: 0;
  z-index: 400;
  background: rgba(8, 10, 18, 0.55);
  backdrop-filter: blur(10px);
  animation: lp-assistant-backdrop-in 0.28s var(--lp-ease);
  cursor: pointer;
}

@keyframes lp-assistant-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 520px) {
  .lp-modal--chat {
    align-items: center;
    padding: 1.25rem;
  }
}

.lp-modal__box--chat {
  max-width: 420px;
  width: 100%;
  max-height: min(90vh, 660px);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 -8px 40px rgba(30, 58, 95, 0.12),
    0 32px 80px rgba(30, 58, 95, 0.28);
  animation: lp-assistant-sheet-in 0.38s var(--lp-ease);
  cursor: default;
}

@keyframes lp-assistant-sheet-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 520px) {
  .lp-modal__box--chat {
    border-radius: 24px;
    max-height: min(84vh, 620px);
    animation-name: lp-assistant-modal-in;
  }

  @keyframes lp-assistant-modal-in {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

body.lp-assistant-open {
  overflow: hidden;
}

.lp-assistant__handle {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0.55rem auto 0;
  border-radius: 99px;
  background: rgba(30, 58, 95, 0.14);
  flex-shrink: 0;
  cursor: pointer;
}

@media (min-width: 520px) {
  .lp-assistant__handle {
    display: none;
  }
}

.lp-assistant__toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  padding:
    calc(0.35rem + env(safe-area-inset-top, 0px))
    0.75rem
    0.15rem;
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
}

.lp-assistant__head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem 1rem;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    linear-gradient(145deg, #1e3a5f 0%, #2d4a73 52%, #2d4a73 100%);
  color: #fff;
  flex-shrink: 0;
}

.lp-assistant__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.lp-assistant__meta h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lp-assistant__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.lp-assistant__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.22);
  animation: lp-assistant-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-assistant-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.08); }
}

.lp-assistant__avatar {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #e8eaef 100%);
  color: #2d4a73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.28);
}

.lp-assistant__avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.lp-assistant__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #f4f5f7;
  color: var(--lp-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background 0.2s var(--lp-ease), transform 0.2s var(--lp-ease);
}

.lp-assistant__close i {
  font-size: 1rem;
}

.lp-assistant__close:hover {
  background: #eceef1;
}

.lp-assistant__close:active {
  transform: scale(0.96);
}

.lp-assistant__hint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.lp-assistant-chips-wrap {
  position: relative;
  flex-shrink: 0;
  background: #fff;
  padding: 0.65rem 0.85rem 0.55rem;
}

.lp-assistant-chips-wrap::before,
.lp-assistant-chips-wrap::after {
  display: none;
}

.lp-assistant-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0;
  overflow: visible;
}

.lp-assistant-chip {
  width: 100%;
  min-height: 40px;
  padding: 0.5rem 0.55rem;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 12px;
  background: #f4f5f7;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    border-color 0.2s var(--lp-ease),
    background 0.2s var(--lp-ease),
    transform 0.2s var(--lp-ease),
    box-shadow 0.2s var(--lp-ease);
}

.lp-assistant-chip:hover {
  border-color: rgba(30, 58, 95, 0.18);
  background: #fff;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.06);
}

.lp-assistant-chip:active {
  transform: scale(0.97);
}

.lp-assistant-messages {
  flex: 1;
  min-height: 240px;
  overflow-y: auto;
  padding: 1rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(30, 58, 95, 0.025) 0%, transparent 42%),
    linear-gradient(180deg, #f8f9fb 0%, #f1f3f6 100%);
  scroll-behavior: smooth;
}

.lp-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  max-width: 100%;
}

.lp-chat-row--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.lp-chat-row--bot {
  align-self: flex-start;
}

.lp-chat-row__avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2d4a73 0%, #334155 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.14);
}

.lp-chat-bubble {
  max-width: min(82%, 300px);
  padding: 0.72rem 0.95rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  word-break: break-word;
}

.lp-chat-bubble--user {
  background: linear-gradient(145deg, #2d4a73 0%, #1f2937 100%);
  color: #fff;
  border-end-end-radius: 5px;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.14);
}

.lp-chat-bubble--bot {
  background: #fff;
  color: var(--lp-text);
  border: 1px solid rgba(30, 58, 95, 0.06);
  border-end-start-radius: 5px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.05);
}

.lp-chat-bubble--typing {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 42px;
  padding-block: 0.85rem;
}

.lp-chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca3af;
  animation: lp-chat-typing 1.2s ease-in-out infinite;
}

.lp-chat-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.lp-chat-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes lp-chat-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.lp-assistant-suggest {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(30, 58, 95, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lp-assistant-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(30, 58, 95, 0.07);
  border-radius: 10px;
  background: #f8f9fb;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-text);
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease);
}

.lp-assistant-suggest__item::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.62rem;
  color: var(--lp-muted);
  flex-shrink: 0;
}

[dir="rtl"] .lp-assistant-suggest__item::before {
  content: '\f053';
}

.lp-assistant-suggest__item:hover {
  background: #fff;
  border-color: rgba(30, 58, 95, 0.14);
}

.lp-assistant-form {
  flex-shrink: 0;
  padding: 0.85rem 1rem calc(0.95rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid rgba(30, 58, 95, 0.06);
}

.lp-assistant-form__field {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  background: #f4f5f7;
  transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-assistant-form__field:focus-within {
  border-color: rgba(30, 58, 95, 0.18);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.04);
}

.lp-assistant-form input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  color: var(--lp-text);
}

.lp-assistant-form input::placeholder {
  color: #9ca3af;
}

.lp-assistant-form button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #2d4a73 0%, #1f2937 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.18);
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-assistant-form button:hover {
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.22);
}

.lp-assistant-form button:active {
  transform: scale(0.94);
}

.lp-assistant-form button i {
  font-size: 0.9rem;
  transform: scaleX(-1);
}

[dir="ltr"] .lp-assistant-form button i {
  transform: none;
}

@media (max-width: 519px) {
  .lp-modal--chat {
    align-items: flex-end;
    padding: 0;
  }

  .lp-modal__box--chat {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: min(92dvh, 720px);
    border-radius: 20px 20px 0 0;
    border: none;
    box-shadow: 0 -12px 48px rgba(30, 58, 95, 0.22);
  }

  .lp-assistant__toolbar {
    padding:
      calc(0.45rem + env(safe-area-inset-top, 0px))
      0.85rem
      0.35rem;
  }

  .lp-assistant__close {
    min-height: 46px;
    padding: 0.5rem 1rem;
    font-size: 0.86rem;
  }

  .lp-assistant__head {
    padding: 0.65rem 0.85rem 0.85rem;
    gap: 0.45rem;
  }

  .lp-assistant__meta h3 {
    font-size: 0.95rem;
  }

  .lp-assistant__hint {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .lp-assistant__avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .lp-assistant-messages {
    min-height: 180px;
    padding: 0.75rem 0.85rem;
  }

  .lp-assistant-form {
    padding: 0.7rem 0.85rem calc(0.8rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 520px) {
  .lp-assistant-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Blog page ── */
.lp-page-hero--blog {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.25rem 3rem;
}

.lp-section--blog,
.lp-section--blog-post {
  padding-top: 2.25rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .lp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-blog-grid {
    grid-template-columns: 1fr;
  }
}

.lp-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(30, 58, 95, 0.05);
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease);
  height: 100%;
}

.lp-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.08);
}

.lp-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #2d4a73, #334155);
  overflow: hidden;
}

.lp-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-blog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
}

.lp-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
}

.lp-blog-card__date {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-blog-card h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.4;
}

.lp-blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.lp-blog-card h2 a:hover {
  color: var(--lp-primary);
}

.lp-blog-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.65;
  flex: 1;
}

.lp-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--lp-primary);
}

.lp-blog-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 20px;
  color: var(--lp-muted);
}

.lp-blog-empty i {
  font-size: 2.5rem;
  opacity: 0.25;
  margin-bottom: 0.85rem;
}

.lp-blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.lp-blog-post__cover {
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.08);
}

.lp-blog-post__cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.lp-blog-post__content {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 12px 36px rgba(30, 58, 95, 0.05);
}

.lp-blog-post__content p {
  margin: 0 0 1rem;
  line-height: 1.85;
  color: var(--lp-text);
}

.lp-blog-post__actions {
  margin-top: 1.5rem;
}

[dir="ltr"] .lp-blog-card__link i,
[dir="ltr"] .lp-blog-post__actions .fa-arrow-right {
  transform: scaleX(-1);
}

/* Portfolio on landing */
.lp-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) {
  .lp-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .lp-portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.lp-portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--lp-surface, #fff);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.lp-portfolio-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg,#2d4a73,#475569);
}
.lp-portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-portfolio-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  color: rgba(255,255,255,.25);
}
.lp-portfolio-card__cat {
  position: absolute;
  top: .65rem;
  inset-inline-start: .65rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--lp-accent, #2dd4bf);
  font-size: .68rem;
  font-weight: 800;
}
.lp-portfolio-card__body {
  padding: .85rem 1rem 1rem;
}
.lp-portfolio-card__body h3 {
  margin: 0 0 .35rem;
  font-size: .95rem;
}
.lp-portfolio-card__body p {
  margin: 0;
  font-size: .82rem;
  color: #666;
  line-height: 1.5;
}
.lp-portfolio-card__client {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .5rem;
  font-size: .72rem;
  color: #888;
}

.lp-page-hero--faq {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.25rem 3rem;
}

.lp-section--faq {
  padding-top: 2.25rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.04);
  transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-faq-item:hover {
  border-color: rgba(30, 58, 95, 0.12);
}

.lp-faq-item[open] {
  border-color: rgba(30, 58, 95, 0.14);
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.07);
}

.lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item__q {
  flex: 1;
  min-width: 0;
}

.lp-faq-item__chev {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--lp-bg);
  color: var(--lp-muted);
  font-size: 0.72rem;
  transition: transform 0.25s var(--lp-ease), background 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

.lp-faq-item[open] .lp-faq-item__chev {
  transform: rotate(180deg);
  background: var(--lp-primary);
  color: #fff;
}

.lp-faq-item__answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--lp-border);
  margin-top: -0.15rem;
  padding-top: 0.95rem;
}

.lp-faq-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 20px;
  color: var(--lp-muted);
}

.lp-faq-empty i {
  font-size: 2.5rem;
  opacity: 0.25;
  margin-bottom: 0.85rem;
}

.lp-faq-empty p {
  margin: 0;
  font-weight: 600;
}

.lp-faq-cta {
  margin-top: 1.5rem;
}

.lp-faq-cta .lp-btn {
  justify-content: center;
}

/* Platform hub */
.lp-platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 540px) {
  .lp-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.lp-shop-card--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-shop-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(30, 58, 95, 0.1);
}

.lp-shop-card__badge--out {
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  inset-inline-start: auto;
  inset-inline-end: 0.5rem;
}

.lp-shop-grid--page {
  margin-top: 1rem;
}

.lp-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .lp-packages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.lp-packages-grid--home {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lp-packages-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.lp-package-card {
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 95, 0.08);
  background: #fff;
  padding: 1.15rem;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-package-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.14);
  color: #b8860b;
  margin-bottom: 0.35rem;
}

.lp-package-card__head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.lp-package-card__head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--lp-muted, #6b7280);
  line-height: 1.5;
}

.lp-package-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.lp-package-card__features li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.lp-package-card__features i {
  color: #14b8a6;
  margin-top: 0.15rem;
}

.lp-package-card__foot {
  margin-top: auto;
  display: grid;
  gap: 0.35rem;
}

.lp-package-card__foot strong {
  font-size: 1.2rem;
}

.lp-package-card__foot span {
  font-size: 0.75rem;
  color: var(--lp-muted, #6b7280);
}

.lp-package-card--compact .lp-package-card__head p {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.lp-home-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-home-quick__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.04);
  border: 1px solid rgba(30, 58, 95, 0.08);
  text-decoration: none;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-home-quick__item i {
  color: #b8860b;
}

.lp-cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: var(--lp-surface, #fff);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.lp-cta-inline h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.lp-cta-inline p {
  margin: 0;
  color: var(--lp-muted, #6b7280);
  font-size: 0.88rem;
}

.lp-footer__ext {
  font-size: 0.62rem;
  opacity: 0.45;
  margin-inline-start: auto;
}

.lp-nav__link--app {
  color: #b8860b;
  font-weight: 800;
}

.lp-page-hero--portfolio {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 1.25rem 2.25rem;
  color: #1e3a5f;
  background:
    radial-gradient(ellipse 70% 55% at 90% 10%, rgba(45, 212, 191, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 90%, rgba(45, 212, 191, 0.1), transparent 50%),
    linear-gradient(180deg, #fffef8 0%, #f4f5f7 100%);
}

.lp-page-hero--portfolio .lp-page-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(94, 234, 212, 0.18), transparent 28%),
    radial-gradient(circle at 12% 70%, rgba(45, 212, 191, 0.1), transparent 24%);
}

.lp-page-hero--portfolio .lp-breadcrumb {
  color: #64748b;
}

.lp-page-hero--portfolio .lp-breadcrumb a {
  color: #475569;
}

.lp-page-hero--portfolio .lp-breadcrumb a:hover {
  color: #1e3a5f;
}

.lp-page-hero--portfolio .lp-page-hero__badge {
  background: #ccfbf1;
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: #0f766e;
}

.lp-page-hero--portfolio .lp-page-hero__badge i {
  color: #14b8a6;
}

.lp-portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1.75rem;
  align-items: center;
}

.lp-portfolio-hero__copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1e3a5f;
}

.lp-portfolio-hero__copy > p {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
}

.lp-portfolio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-page-hero--portfolio .lp-portfolio-hero__actions .lp-btn--primary {
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  color: #1e3a5f;
  border: none;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.28);
}

.lp-page-hero--portfolio .lp-portfolio-hero__actions .lp-btn--ghost {
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  color: #1e3a5f;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.05);
}

.lp-page-hero--portfolio .lp-portfolio-hero__actions .lp-btn--ghost:hover {
  background: #f0fdfa;
  border-color: rgba(20, 184, 166, 0.45);
  color: #0f766e;
}

.lp-portfolio-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.85rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 58, 95, 0.06);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.07);
  backdrop-filter: blur(10px);
}

.lp-portfolio-stat {
  padding: 0.85rem 0.55rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.05);
  text-align: center;
}

.lp-portfolio-stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 900;
  color: #1e3a5f;
  line-height: 1.1;
}

.lp-portfolio-stat span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #64748b;
}

.lp-section--portfolio-featured {
  padding-top: 0;
  padding-bottom: 0.75rem;
  margin-top: -0.35rem;
}

.lp-portfolio-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #1e3a5f;
  color: #fff;
  box-shadow: 0 28px 64px rgba(30, 58, 95, 0.2);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.lp-portfolio-featured__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.lp-portfolio-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-portfolio-featured__ph {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 320px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.28);
}

.lp-portfolio-featured__badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.95);
  color: #1e3a5f;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-portfolio-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
}

.lp-portfolio-featured__body h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1.25;
}

.lp-portfolio-featured__body > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.lp-portfolio-featured__client {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-portfolio-featured__client i {
  color: #2dd4bf;
}

.lp-portfolio-featured__client small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.lp-portfolio-featured__client strong {
  font-size: 0.95rem;
}

.lp-portfolio-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #5eead4;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-section--portfolio {
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.lp-portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.lp-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lp-portfolio-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--lp-border);
  background: #fff;
  color: #475569;
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.lp-portfolio-filter em {
  font-style: normal;
  min-width: 1.35rem;
  padding: 0.08rem 0.35rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.06);
  font-size: 0.72rem;
  text-align: center;
}

.lp-portfolio-filter:hover,
.lp-portfolio-filter.is-active {
  background: #ccfbf1;
  border-color: rgba(20, 184, 166, 0.45);
  color: #0f766e;
  transform: translateY(-1px);
}

.lp-portfolio-filter.is-active em {
  background: rgba(133, 77, 14, 0.12);
}

.lp-portfolio-results {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 700;
}

.lp-portfolio-results strong {
  color: #1e3a5f;
}

.lp-portfolio-grid--page {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.lp-portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.06);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.06);
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease), border-color 0.25s;
}

.lp-portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 18px 40px rgba(30, 58, 95, 0.1);
}

.lp-portfolio-card.is-featured {
  border-color: rgba(20, 184, 166, 0.4);
}

.lp-portfolio-card[hidden] {
  display: none;
}

.lp-portfolio-card__hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.lp-portfolio-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #2d4a73;
}

.lp-portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.lp-portfolio-card:hover .lp-portfolio-card__media img {
  transform: scale(1.05);
}

.lp-portfolio-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.35);
}

.lp-portfolio-tone--design {
  background: linear-gradient(145deg, #1e1b4b, #7c3aed 55%, #f59e0b);
}

.lp-portfolio-tone--dev {
  background: linear-gradient(145deg, #1e3a5f, #0369a1 55%, #22d3ee);
}

.lp-portfolio-tone--marketing {
  background: linear-gradient(145deg, #1e3a5f, #14b8a6 55%, #2dd4bf);
}

.lp-portfolio-tone--default {
  background: linear-gradient(145deg, #111827, #374151 55%, #2dd4bf);
}

.lp-portfolio-card__cat {
  position: absolute;
  top: 0.7rem;
  inset-inline-start: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.95);
  color: #1e3a5f;
  font-size: 0.7rem;
  font-weight: 800;
}

.lp-portfolio-card__star {
  position: absolute;
  top: 0.7rem;
  inset-inline-end: 0.7rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.45);
  color: #2dd4bf;
  font-size: 0.75rem;
}

.lp-portfolio-card__overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(30, 58, 95, 0.72));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lp-portfolio-card:hover .lp-portfolio-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.lp-portfolio-card__body {
  padding: 1rem 1.05rem 1.1rem;
  text-align: start;
}

.lp-portfolio-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.lp-portfolio-card__body p {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-portfolio-card__client {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0f766e;
}

.lp-portfolio-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--lp-muted);
}

.lp-portfolio-empty i {
  display: block;
  font-size: 2rem;
  color: #14b8a6;
  margin-bottom: 0.75rem;
}

.lp-portfolio-empty--filter {
  margin-top: 1rem;
}

.lp-section--portfolio-cta {
  padding-top: 0.5rem;
}

.lp-portfolio-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(45, 212, 191, 0.18), transparent 55%),
    #1e3a5f;
  color: #fff;
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.16);
}

.lp-portfolio-cta h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 900;
}

.lp-portfolio-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 34rem;
  line-height: 1.6;
}

.lp-portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lp-portfolio-modal[hidden] {
  display: none;
}

.lp-portfolio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(4px);
}

.lp-portfolio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(90vh, 860px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(30, 58, 95, 0.28);
}

.lp-portfolio-modal__close {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.55);
  color: #fff;
  cursor: pointer;
}

.lp-portfolio-modal__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-portfolio-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-portfolio-modal__ph {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.35);
}

.lp-portfolio-modal__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 1.4rem;
}

.lp-portfolio-modal__body h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.lp-portfolio-modal__body > p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.lp-portfolio-modal__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--lp-border);
}

.lp-portfolio-modal__meta i {
  color: #14b8a6;
}

.lp-portfolio-modal__meta small {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}

.lp-portfolio-modal__body .lp-portfolio-chip {
  color: #0f766e;
  background: #ccfbf1;
  border-color: rgba(20, 184, 166, 0.35);
}

body.lp-portfolio-modal-open {
  overflow: hidden;
}

.lp-page-hero--portfolio-detail {
  padding-bottom: 1.25rem;
}

.lp-section--portfolio-detail {
  padding-top: 0.5rem;
}

.lp-project {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.lp-project__gallery {
  display: grid;
  gap: 0.75rem;
}

.lp-project__cover {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.12);
}

.lp-project__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-project__cover-ph {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 360px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.35);
}

.lp-project__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-project__thumb {
  width: 84px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.lp-project__thumb.is-active,
.lp-project__thumb:hover {
  border-color: #2dd4bf;
}

.lp-project__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-project__side {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.06);
}

.lp-project__side h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
}

.lp-project__lead {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: 1.02rem;
}

.lp-project__meta {
  display: grid;
  gap: 0.65rem;
}

.lp-project__meta-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--lp-border);
}

.lp-project__meta-item i {
  color: #14b8a6;
}

.lp-project__meta-item small {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}

.lp-project__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lp-portfolio-chip--dark {
  color: #0f766e;
  background: #ccfbf1;
  border-color: rgba(20, 184, 166, 0.35);
}

.lp-project__story {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.05);
}

.lp-project__story h2 {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.lp-project__story-body {
  color: #334155;
  line-height: 1.85;
  font-size: 1rem;
}

.lp-project__related {
  margin-top: 2.5rem;
}

.lp-portfolio-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-portfolio-featured__actions .lp-btn--primary {
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  color: #1e3a5f;
  border: none;
}

.lp-portfolio-featured__actions .lp-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lp-portfolio-featured__actions .lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(45, 212, 191, 0.5);
  color: #fff;
}

.lp-portfolio-featured__body h2 a {
  color: inherit;
  text-decoration: none;
}

.lp-portfolio-featured__body h2 a:hover {
  color: #5eead4;
}

.lp-portfolio-card__hit {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 900px) {
  .lp-project {
    grid-template-columns: 1fr;
  }

  .lp-project__cover,
  .lp-project__cover-ph {
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .lp-project__actions,
  .lp-portfolio-featured__actions {
    flex-direction: column;
  }

  .lp-project__actions .lp-btn,
  .lp-portfolio-featured__actions .lp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 540px) {
  .lp-portfolio-grid--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .lp-portfolio-grid--page { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .lp-portfolio-hero,
  .lp-portfolio-featured {
    grid-template-columns: 1fr;
  }

  .lp-portfolio-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .lp-portfolio-hero__actions,
  .lp-portfolio-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-portfolio-hero__actions .lp-btn,
  .lp-portfolio-cta .lp-btn {
    width: 100%;
    justify-content: center;
  }

  .lp-portfolio-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-portfolio-featured__media,
  .lp-portfolio-featured__ph {
    min-height: 220px;
  }
}


.lp-platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 16px;
  background: var(--lp-surface, #fff);
  border: 1px solid rgba(30, 58, 95, 0.07);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lp-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(30, 58, 95, 0.08);
  border-color: rgba(45, 212, 191, 0.35);
}

.lp-platform-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(45, 212, 191, 0.06));
  color: #b8860b;
  margin-bottom: 0.35rem;
}

.lp-platform-card strong {
  font-size: 0.95rem;
}

.lp-platform-card span {
  font-size: 0.78rem;
  color: var(--lp-muted, #6b7280);
  line-height: 1.45;
  padding-inline-end: 1.5rem;
}

.lp-platform-card__go {
  position: absolute;
  bottom: 1rem;
  inset-inline-start: 1rem;
  font-size: 0.72rem;
  opacity: 0.45;
}

.lp-section--platform {
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

/* Shop on landing */
.lp-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .lp-shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}

.lp-shop-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.07);
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.05);
}

.lp-shop-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #f3f4f6;
}

.lp-shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-shop-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  color: #d4a017;
  opacity: 0.35;
}

.lp-shop-card__badge {
  position: absolute;
  top: 0.5rem;
  inset-inline-start: 0.5rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  background: #2dd4bf;
  color: #2d4a73;
}

.lp-shop-card__body {
  padding: 0.75rem;
}

.lp-shop-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.lp-shop-card__body strong {
  font-size: 0.88rem;
}

/* ── Hostinger store ── */
.lp-page-hero--hosting {
  position: relative;
  overflow: hidden;
  background: var(--lp-navy);
  color: #fff;
}

.lp-page-hero--hosting h1,
.lp-page-hero--hosting .lp-page-hero__badge {
  color: #fff;
}

.lp-page-hero--hosting .lp-page-hero__badge {
  background: rgba(45, 212, 191, 0.15);
  border-color: rgba(45, 212, 191, 0.35);
  color: var(--lp-green);
}

.lp-page-hero--hosting p {
  color: rgba(255, 255, 255, 0.72);
}

.lp-page-hero--hosting .lp-breadcrumb,
.lp-page-hero--hosting .lp-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.lp-page-hero--hosting .lp-breadcrumb a:hover {
  color: var(--lp-green);
}

.lp-page-hero--hosting .lp-page-hero__inner {
  position: relative;
  z-index: 1;
}

.lp-page-hero--hosting .lp-page-hero__mesh {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45, 212, 191, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 255, 255, 0.07), transparent 50%);
}

.lp-hosting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 1rem;
}

.lp-page-hero__copy--hosting {
  max-width: 620px;
}

.lp-hosting-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.lp-hosting-hero__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hosting-showcase {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
}

.lp-hosting-showcase__aura {
  position: absolute;
  inset: -10% -8%;
  background:
    radial-gradient(circle at 45% 20%, rgba(45, 212, 191, 0.18), transparent 52%),
    radial-gradient(circle at 85% 75%, rgba(56, 189, 248, 0.1), transparent 48%);
  filter: blur(22px);
  pointer-events: none;
}

.lp-hosting-showcase__board {
  position: relative;
  border-radius: 30px;
  background:
    linear-gradient(155deg, rgba(22, 22, 28, 0.97), rgba(8, 8, 12, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 42px 90px rgba(30, 58, 95, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.lp-hosting-showcase__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.lp-hosting-showcase__lights i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-inline-end: 5px;
}

.lp-hosting-showcase__lights i:nth-child(1) {
  background: #ff5f57;
}

.lp-hosting-showcase__lights i:nth-child(2) {
  background: #febc2e;
}

.lp-hosting-showcase__lights i:nth-child(3) {
  background: #28c840;
}

.lp-hosting-showcase__status {
  margin-inline-start: auto;
  color: #5eead4;
  font-weight: 800;
}

.lp-hosting-showcase__status i {
  font-size: 0.45rem;
  vertical-align: middle;
  margin-inline-end: 0.35rem;
}

.lp-hosting-showcase__headline {
  padding: 1.35rem 1.35rem 0.25rem;
}

.lp-hosting-showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #2dd4bf;
  font-size: 0.72rem;
  font-weight: 800;
}

.lp-hosting-showcase__headline strong {
  display: block;
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lp-hosting-showcase__headline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 38ch;
}

.lp-hosting-showcase__metrics {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem 0.25rem;
}

.lp-hosting-showcase__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 88px;
}

.lp-hosting-showcase__metric-ring {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(45, 212, 191, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(45, 212, 191, 0.45);
  color: #2dd4bf;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.15);
}

.lp-hosting-showcase__metric small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.lp-hosting-showcase__bars {
  flex: 1;
  display: grid;
  gap: 0.55rem;
}

.lp-hosting-showcase__bars span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.lp-hosting-showcase__bars span::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.55), rgba(45, 212, 191, 0.95));
}

.lp-hosting-showcase__nav {
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.35rem 1.35rem;
}

.lp-hosting-showcase__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lp-hosting-showcase__link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-1px);
}

.lp-hosting-showcase__link.is-primary {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.32);
}

.lp-hosting-showcase__link-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.14);
  color: #2dd4bf;
  font-size: 1rem;
}

.lp-hosting-showcase__link-copy small {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
}

.lp-hosting-showcase__link-copy strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 900;
}

.lp-hosting-showcase__link-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

.lp-hosting-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  justify-content: center;
}

.lp-hosting-showcase__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 212, 191, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
}

.lp-hosting-showcase__chips i {
  color: #2dd4bf;
}

@media (max-width: 980px) {
  .lp-hosting-hero {
    grid-template-columns: 1fr;
  }

  .lp-page-hero__copy--hosting {
    max-width: none;
  }

  .lp-hosting-hero__visual {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .lp-hosting-showcase__board {
    border-radius: 24px;
  }

  .lp-hosting-showcase__headline {
    padding: 1.1rem 1.1rem 0.15rem;
  }

  .lp-hosting-showcase__headline strong {
    font-size: 1.75rem;
  }

  .lp-hosting-showcase__metrics {
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1.1rem 0.15rem;
  }

  .lp-hosting-showcase__metric {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .lp-hosting-showcase__metric-ring {
    width: 58px;
    height: 58px;
    font-size: 0.88rem;
  }

  .lp-hosting-showcase__nav {
    padding: 1rem 1.1rem 1.1rem;
  }
}

.lp-hosting-panel[hidden] {
  display: none !important;
}

.lp-hosting-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lp-hosting-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lp-hosting-tab.is-active {
  background: var(--lp-green-dark);
  color: var(--lp-on-green);
  border-color: var(--lp-green-dark);
}

.lp-hosting-search__label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.lp-hosting-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.lp-hosting-search__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  font: inherit;
}

.lp-hosting-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lp-hosting-tld {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.04);
  border: 1px solid rgba(30, 58, 95, 0.07);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.lp-hosting-results h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.lp-hosting-results__grid,
.lp-hosting-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}

.lp-hosting-result,
.lp-hosting-plan {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 4px 18px rgba(30, 58, 95, 0.04);
}

.lp-hosting-result.is-available {
  border-color: rgba(45, 212, 191, 0.45);
}

.lp-hosting-result__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.lp-hosting-result__head h4 {
  margin: 0;
  font-size: 0.95rem;
  word-break: break-all;
}

.lp-hosting-status {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.lp-hosting-status--ok {
  background: rgba(20, 184, 166, 0.12);
  color: #15803d;
}

.lp-hosting-status--no {
  background: rgba(30, 58, 95, 0.06);
  color: #666;
}

.lp-hosting-result__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.lp-hosting-plan__head {
  margin-bottom: 0.75rem;
}

.lp-hosting-plan__head h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.lp-hosting-plan__price {
  font-size: 1.35rem;
  font-weight: 900;
}

.lp-hosting-plan__price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-hosting-plan__meta {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-hosting-plan__meta li {
  padding: 0.15rem 0;
}

.lp-hosting-shared {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--lp-border);
  background: #fff;
}

.lp-hosting-shared__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.15);
  font-size: 1.5rem;
  color: #b8860b;
}

.lp-hosting-shared__list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
  text-align: start;
}

.lp-hosting-shared__list li {
  padding: 0.35rem 0;
}

.lp-hosting-shared__list i {
  color: #14b8a6;
  margin-inline-end: 0.35rem;
}

.lp-hosting-hint,
.lp-hosting-intro {
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-hosting-loading,
.lp-hosting-empty,
.lp-hosting-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem;
  color: var(--lp-muted);
}

.lp-hosting-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lp-hosting-modal[hidden] {
  display: none;
}

.lp-hosting-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 95, 0.45);
}

.lp-hosting-modal__dialog {
  position: relative;
  width: min(100%, 440px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(30, 58, 95, 0.2);
}

.lp-hosting-modal__dialog--checkout {
  width: min(100%, 920px);
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.lp-hosting-modal--checkout .lp-hosting-modal__close {
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.lp-hpay-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  min-height: 420px;
}

.lp-hpay-layout--order {
  min-height: 480px;
}

.lp-hpay-summary {
  background: var(--lp-gradient);
  color: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-hpay-summary__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.85;
}

.lp-hpay-summary__heading {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.lp-hpay-summary__product strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.lp-hpay-summary__ref {
  font-size: 0.82rem;
  opacity: 0.75;
  font-weight: 600;
}

.lp-hpay-summary__lines {
  flex: 1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-hpay-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  opacity: 0.9;
  padding: 0.35rem 0;
}

.lp-hpay-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

.lp-hpay-summary__total strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.lp-hpay-main {
  padding: 1.75rem 1.75rem 1.5rem;
  overflow: auto;
  max-height: 90vh;
}

.lp-hpay-main__title {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 0.35rem;
}

.lp-hpay-main__subtitle {
  font-size: 1rem;
  font-weight: 800;
  margin: 1.25rem 0 0.35rem;
}

.lp-hpay-main__secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
  margin: 0 0 1.15rem;
}

.lp-hpay-form {
  margin: 0;
}

.lp-hpay-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-hpay-fields label:first-child {
  grid-column: 1 / -1;
}

.lp-hpay-notes {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.lp-hpay-notes textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font: inherit;
  resize: vertical;
}

.lp-hpay-fields label,
.lp-hpay-form .lp-hosting-form__account-fields label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
}

.lp-hpay-fields input,
.lp-hpay-form .lp-hosting-form__account-fields input {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font: inherit;
}

.lp-hpay-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.lp-hpay-card {
  position: relative;
  display: block;
  min-height: 108px;
  padding: 0.85rem 0.75rem 0.7rem;
  border: 2px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lp-hpay-card:hover {
  border-color: var(--lp-text);
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.06);
}

.lp-hpay-card.is-active {
  border-color: var(--lp-primary);
  background: #fafafa;
  box-shadow: 0 0 0 1px var(--lp-primary);
}

.lp-hpay-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-hpay-card__check {
  position: absolute;
  top: 0.55rem;
  inset-inline-end: 0.55rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: transparent;
  background: #fff;
  transition: all 0.15s;
}

.lp-hpay-card.is-active .lp-hpay-card__check {
  background: var(--lp-primary);
  border-color: var(--lp-primary);
  color: #fff;
}

.lp-hpay-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding-inline-end: 1.5rem;
}

.lp-hpay-card__name {
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.lp-hpay-card__sub {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-hpay-card__logos {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 1.35rem;
  color: #6b7280;
}

.lp-hpay-card__icon {
  margin-top: auto;
  font-size: 1.5rem;
  color: var(--lp-primary);
}

.lp-hpay-card__icon--wa {
  color: #25d366;
}

.lp-hpay-card__logo {
  max-width: 72px;
  max-height: 28px;
  object-fit: contain;
}

.lp-hpay-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: var(--lp-primary);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lp-hpay-submit:hover {
  background: #1f1f1f;
  color: #fff;
}

.lp-hpay-submit:active {
  transform: scale(0.99);
}

.lp-hpay-submit--sm {
  display: inline-flex;
  width: auto;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  text-decoration: none;
}

.lp-hpay-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-hpay-trust i {
  font-size: 1.1rem;
  opacity: 0.65;
}

.lp-hpay-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.lp-hpay-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 2px solid var(--lp-border, #e8e8ec);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
}

.lp-hpay-bar:hover {
  border-color: rgba(30, 58, 95, 0.22);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
}

.lp-hpay-bar.is-active {
  border-color: var(--lp-primary, #1e3a5f);
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.02) 0%, rgba(30, 58, 95, 0.05) 100%);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.08);
}

.lp-hpay-bar input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-hpay-bar__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--lp-border, #d0d0d8);
  color: transparent;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: all 0.18s;
}

.lp-hpay-bar.is-active .lp-hpay-bar__check {
  background: var(--lp-primary, #1e3a5f);
  border-color: var(--lp-primary, #1e3a5f);
  color: #fff;
}

.lp-hpay-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.04);
  font-size: 1.25rem;
  color: var(--lp-primary, #1e3a5f);
  flex-shrink: 0;
}

.lp-hpay-bar__icon img,
.lp-hpay-bar__logo {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.lp-hpay-bar__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lp-hpay-bar__name {
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.3;
}

.lp-hpay-bar__sub {
  font-size: 0.8rem;
  color: var(--lp-muted, #666);
  font-weight: 600;
}

.lp-hpay-bar__arrow {
  color: var(--lp-muted, #999);
  font-size: 0.75rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.lp-hpay-bar.is-active .lp-hpay-bar__arrow {
  opacity: 1;
  color: var(--lp-primary, #1e3a5f);
}

.lp-hpay-manual {
  margin: 0.5rem 0 1.25rem;
  border: 1px solid var(--lp-border, #e8e8ec);
  border-radius: 16px;
  overflow: hidden;
  background: #fafafa;
  animation: lpFadeIn 0.25s ease;
}

@keyframes lpFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-hpay-manual__bank {
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #fef3c7 100%);
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.lp-hpay-manual__bank h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-hpay-manual__dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-hpay-manual__dl div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
}

.lp-hpay-manual__dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: #92400e;
  min-width: 5rem;
}

.lp-hpay-manual__dl dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.lp-hpay-manual__dl code {
  font-family: ui-monospace, monospace;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.lp-hpay-manual__wallet {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.55;
  white-space: pre-wrap;
  font-family: inherit;
}

.lp-hpay-manual__proof {
  padding: 1.15rem 1.25rem 1.25rem;
  background: #fff;
}

.lp-hpay-manual__proof-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-hpay-manual__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.lp-hpay-manual__field span,
.lp-hpay-manual__field-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-muted, #555);
}

.lp-hpay-manual__field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--lp-border, #e0e0e8);
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  transition: border-color 0.15s;
}

.lp-hpay-manual__field input:focus {
  outline: none;
  border-color: var(--lp-primary, #1e3a5f);
}

.lp-hpay-manual__upload {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-hpay-manual__pick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px dashed var(--lp-border, #ccc);
  border-radius: 12px;
  background: #fafafa;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--lp-primary, #1e3a5f);
  transition: border-color 0.15s, background 0.15s;
}

.lp-hpay-manual__pick:hover {
  border-color: var(--lp-primary, #1e3a5f);
  background: #f0f0f2;
}

.lp-hpay-manual__hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--lp-muted, #888);
}

.lp-hpay-manual__preview {
  border-radius: 10px;
  overflow: hidden;
  max-height: 160px;
  border: 1px solid var(--lp-border, #e8e8ec);
}

.lp-hpay-manual__preview img {
  display: block;
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  background: #f5f5f5;
}

.lp-hpay-manual__pdf {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #b45309;
}

.lp-hpay-manual__pdf i {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

@media (max-width: 720px) {
  .lp-hpay-layout {
    grid-template-columns: 1fr;
  }

  .lp-hpay-summary {
    padding: 1.25rem 1.15rem;
  }

  .lp-hpay-main {
    padding: 1.25rem 1.15rem 1.15rem;
  }

  .lp-hpay-fields {
    grid-template-columns: 1fr;
  }

  .lp-hpay-cards__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .lp-hpay-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Checkout page ——— */
.lp-page--checkout {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45, 212, 191, 0.07), transparent 55%),
    var(--lp-bg);
}

.lp-checkout-page {
  padding: 1.5rem 1rem 3rem;
  min-height: calc(100vh - 140px);
}

.lp-checkout-page__inner {
  max-width: 980px;
  margin: 0 auto;
}

.lp-checkout-page__nav {
  margin-bottom: 1.25rem;
}

.lp-checkout-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lp-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--lp-border);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.lp-checkout-page__back:hover {
  color: var(--lp-text);
  border-color: rgba(45, 212, 191, 0.45);
  background: #fff;
}

.lp-checkout-card {
  background: var(--lp-surface);
  border: 1px solid rgba(30, 58, 95, 0.06);
  border-radius: calc(var(--lp-radius) + 4px);
  box-shadow:
    0 24px 60px rgba(30, 58, 95, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
}

.lp-hpay-layout--page {
  min-height: 480px;
  grid-template-columns: minmax(280px, 340px) 1fr;
}

.lp-hpay-layout--page .lp-hpay-main {
  max-height: none;
  padding: 2rem 2rem 1.75rem;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.lp-hpay-layout--page .lp-hpay-summary {
  padding: 1.65rem 1.45rem;
}

.lp-hpay-main__head {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-page--checkout .lp-hpay-main__title {
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 900;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.lp-page--checkout .lp-hpay-main__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.22);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-page--checkout .lp-hpay-main__secure i {
  font-size: 0.72rem;
}

.lp-page--checkout .lp-hpay-card {
  border-radius: 14px;
  min-height: 112px;
  border-color: #e8eaef;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.03);
}

.lp-page--checkout .lp-hpay-card:hover {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 8px 22px rgba(45, 212, 191, 0.12);
}

.lp-page--checkout .lp-hpay-card.is-active {
  border-color: #2dd4bf;
  background: linear-gradient(180deg, #fffef5 0%, #fff 100%);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.35),
    0 10px 28px rgba(45, 212, 191, 0.14);
}

.lp-page--checkout .lp-hpay-card.is-active .lp-hpay-card__check {
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  border-color: #14b8a6;
  color: #422006;
}

.lp-page--checkout .lp-hpay-bar {
  border-radius: 14px;
  border-color: #e8eaef;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.03);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lp-page--checkout .lp-hpay-bar:hover {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 8px 22px rgba(45, 212, 191, 0.1);
}

.lp-page--checkout .lp-hpay-bar.is-active {
  border-color: #2dd4bf;
  background: linear-gradient(90deg, #fffef5 0%, #fff 100%);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.35),
    0 8px 22px rgba(45, 212, 191, 0.12);
}

.lp-page--checkout .lp-hpay-bar.is-active .lp-hpay-bar__check {
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  border-color: #14b8a6;
  color: #422006;
}

.lp-page--checkout .lp-hpay-list {
  gap: 0.55rem;
}

.lp-page--checkout .lp-hpay-manual {
  border-color: rgba(45, 212, 191, 0.28);
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.04);
}

.lp-page--checkout .lp-hpay-manual__pick {
  width: 100%;
  border: 2px dashed rgba(45, 212, 191, 0.45);
  background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
  color: #0f766e;
  font-weight: 800;
}

.lp-page--checkout .lp-hpay-manual__pick:hover {
  border-color: #2dd4bf;
  background: #f0fdfa;
  color: #0f766e;
}

.lp-page--checkout .lp-hpay-notes textarea {
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-page--checkout .lp-hpay-notes textarea:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.16);
}

.lp-hpay-submit-wrap {
  margin-top: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--lp-border);
}

.lp-page--checkout .lp-hpay-submit {
  gap: 0.65rem;
  padding: 1.05rem 1.35rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a73 100%);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.35);
  box-shadow:
    0 14px 36px rgba(30, 58, 95, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  letter-spacing: 0.01em;
}

.lp-page--checkout .lp-hpay-submit__text {
  font-size: 1.02rem;
}

.lp-page--checkout .lp-hpay-submit i {
  font-size: 0.92rem;
  opacity: 0.95;
}

.lp-page--checkout .lp-hpay-submit:hover {
  background: linear-gradient(135deg, #2dd4bf 0%, #5eead4 100%);
  color: #1e3a5f;
  border-color: #14b8a6;
  box-shadow: 0 16px 40px rgba(45, 212, 191, 0.28);
  transform: translateY(-1px);
}

.lp-page--checkout .lp-hpay-submit:active {
  transform: translateY(0) scale(0.99);
}

.lp-page--checkout .lp-hpay-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lp-page--checkout .lp-hpay-trust {
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.03);
  border: 1px solid var(--lp-border);
}

.lp-page--checkout .lp-hpay-trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.1);
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 800;
}

.lp-page--checkout .lp-hpay-trust i {
  font-size: 1.35rem;
  opacity: 0.72;
  color: #64748b;
}

/* Checkout summary — white table + yellow accents */
.lp-hpay-summary--table {
  background: #fff;
  color: var(--lp-text, #2d4a73);
  border-inline-end: 1px solid var(--lp-border, #eee);
  gap: 1rem;
}

.lp-hpay-summary--table .lp-hpay-summary__head {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.lp-hpay-summary--table .lp-hpay-summary__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 100%);
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 1;
  border: 1px solid #2dd4bf;
}

.lp-hpay-summary--table .lp-hpay-summary__brand i {
  color: #a16207;
}

.lp-hpay-summary--table .lp-hpay-summary__heading {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--lp-text, #2d4a73);
  padding-inline-start: 0.15rem;
}

.lp-hpay-summary-table-wrap {
  border: 1px solid #fde68a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(20, 184, 166, 0.08);
}

.lp-hpay-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.lp-hpay-summary-table thead th {
  padding: 0.65rem 0.85rem;
  text-align: start;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0f766e;
  background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%);
  border-bottom: 2px solid #2dd4bf;
}

.lp-hpay-summary-table tbody th,
.lp-hpay-summary-table tbody td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: top;
}

.lp-hpay-summary-table tbody th {
  width: 38%;
  font-weight: 700;
  font-size: 0.8rem;
  color: #78716c;
  background: #fafafa;
  white-space: nowrap;
}

.lp-hpay-summary-table tbody td {
  font-weight: 700;
  color: var(--lp-text, #2d4a73);
  text-align: end;
}

.lp-hpay-summary-table tbody td code {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: #ccfbf1;
  color: #0f766e;
  border: 1px solid #5eead4;
}

.lp-hpay-summary-table__item {
  background: #fff !important;
  border-bottom: 1px dashed #fde68a !important;
  padding: 0.85rem !important;
  text-align: start !important;
}

.lp-hpay-summary-table__item strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--lp-text, #2d4a73);
  font-weight: 800;
}

.lp-hpay-summary-table tfoot th,
.lp-hpay-summary-table tfoot td {
  padding: 0.85rem;
  font-weight: 900;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #fef08a 0%, #5eead4 100%);
  color: #422006;
  border-top: 2px solid #14b8a6;
}

.lp-hpay-summary-table tfoot td {
  text-align: end;
  font-size: 1.25rem;
}

.lp-checkout-result {
  margin-bottom: 1rem;
}

.lp-checkout-result__track {
  margin-top: 1rem;
}

.lp-checkout-page__error {
  text-align: center;
  padding: 2rem;
}

.lp-account-order__pay,
.lp-svc-card__pay {
  text-decoration: none;
}

@media (max-width: 720px) {
  .lp-hpay-layout--page {
    grid-template-columns: 1fr;
  }

  .lp-hpay-layout--page .lp-hpay-main {
    padding: 1.35rem 1.15rem 1.25rem;
  }

  .lp-hpay-layout--page .lp-hpay-summary {
    padding: 1.25rem 1rem;
    border-inline-end: none;
    border-bottom: 1px solid var(--lp-border);
  }

  .lp-page--checkout .lp-hpay-submit-wrap {
    position: sticky;
    bottom: 0;
    z-index: 5;
    margin: 0 -1.15rem -1.25rem;
    padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.92) 0%, #fafafa 100%);
    border-top: 1px solid var(--lp-border);
    backdrop-filter: blur(10px);
  }

  .lp-hpay-summary-table tbody th {
    width: 42%;
    white-space: normal;
  }
}

/* ——— Hosting company homepage ——— */
.lp-hero__actions--dual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-host-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lp-host-product {
  background: #fff;
  border: 1px solid var(--lp-border, #eee);
  border-radius: var(--lp-radius, 16px);
  padding: 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-host-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.08);
}

.lp-host-product.is-featured {
  border-color: #2dd4bf;
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.15);
}

.lp-host-product__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ccfbf1, #5eead4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0f766e;
}

.lp-host-product h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.lp-host-product p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
  line-height: 1.55;
  flex: 1;
}

.lp-host-product__price {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--lp-primary);
}

.lp-section--domains-cta {
  position: relative;
  background: #1e3a5f;
  color: #fff;
  overflow: hidden;
}

.lp-section--domains-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 50%, rgba(45, 212, 191, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.lp-section--domains-cta .lp-section__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.lp-domains-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.65rem);
  align-items: center;
}

[dir="rtl"] .lp-domains-cta__copy {
  justify-self: end;
  text-align: right;
}

[dir="rtl"] .lp-domains-cta__visual {
  justify-self: start;
}

[dir="ltr"] .lp-domains-cta__copy {
  justify-self: start;
  text-align: left;
}

[dir="ltr"] .lp-domains-cta__visual {
  justify-self: end;
}

.lp-domains-cta__copy {
  width: 100%;
  max-width: 460px;
}

.lp-domains-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #2dd4bf;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.lp-domains-cta__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lp-domains-cta__copy > p:not(.lp-domains-cta__alt) {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: none;
}

.lp-domains-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  width: 100%;
}

[dir="ltr"] .lp-domains-cta__actions {
  align-items: flex-start;
}

.lp-domains-cta__alt {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.45rem;
  max-width: 100%;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

[dir="ltr"] .lp-domains-cta__alt {
  justify-content: flex-start;
}

.lp-domains-cta__alt a {
  color: #2dd4bf;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.lp-domains-cta__alt a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-domains-cta__perks {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.lp-domains-cta__perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.lp-domains-cta__perks i {
  color: #2dd4bf;
  font-size: 0.82rem;
}

.lp-domains-cta__btn {
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.28);
}

.lp-domains-cta__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.lp-domains-cta__slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(30, 58, 95, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-domains-cta__slides {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 300px;
  background: #1e3a5f;
}

.lp-domains-cta__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease, transform 1.1s ease;
  pointer-events: none;
}

.lp-domains-cta__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.lp-domains-cta__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

.lp-domains-cta__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(30, 58, 95, 0.15) 0%,
    rgba(30, 58, 95, 0.05) 35%,
    rgba(30, 58, 95, 0.72) 100%
  );
}

.lp-domains-cta__tlds {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.85rem;
  z-index: 2;
}

.lp-domains-cta__tlds span {
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(30, 58, 95, 0.55);
  border: 1px solid rgba(45, 212, 191, 0.22);
  color: #5eead4;
  font-weight: 800;
  font-size: 0.82rem;
  backdrop-filter: blur(6px);
}

.lp-domains-cta__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 3;
}

.lp-domains-cta__dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.lp-domains-cta__dot.is-active {
  width: 24px;
  background: #2dd4bf;
}

.lp-host-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.lp-host-why__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.5rem 1.25rem;
}

.lp-host-why__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lp-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.lp-host-why__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.lp-host-why__card p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-host-why__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.lp-host-why__card li {
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-host-why__card li i {
  color: #14b8a6;
}

@media (max-width: 960px) {
  .lp-host-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-host-why {
    grid-template-columns: 1fr;
  }
  .lp-domains-cta {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 520px;
    margin-inline: auto;
  }

  .lp-domains-cta__copy,
  .lp-domains-cta__visual {
    justify-self: stretch !important;
    max-width: none;
  }

  .lp-domains-cta__copy {
    text-align: center;
  }

  .lp-domains-cta__perks {
    justify-items: center;
  }

  .lp-domains-cta__perks li {
    justify-content: center;
  }

  .lp-domains-cta__actions {
    align-items: stretch;
  }

  .lp-domains-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .lp-domains-cta__alt {
    justify-content: center;
    text-align: center;
  }

  .lp-domains-cta__visual {
    order: -1;
  }

  .lp-domains-cta__slides {
    aspect-ratio: 16 / 11;
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .lp-host-products {
    grid-template-columns: 1fr;
  }
}

.lp-hosting-modal__close {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.lp-hosting-modal__summary {
  color: var(--lp-muted);
  margin: 0 0 1rem;
}

.lp-hosting-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.lp-hosting-form input,
.lp-hosting-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font: inherit;
}

.lp-hosting-form__note {
  font-size: 0.82rem;
  color: var(--lp-muted);
  margin: 0 0 1rem;
}

.lp-btn--block {
  width: 100%;
  justify-content: center;
}

.lp-hosting-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.lp-hosting-trust {
  padding: 1.25rem 1rem;
  background: #fff;
  border-block: 1px solid var(--lp-border);
}

.lp-hosting-trust__grid {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.lp-hosting-trust__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-hosting-trust__item i {
  color: #b8860b;
}

.lp-section__head--center {
  text-align: center;
}

.lp-hosting-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.lp-section--hosting-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
}

.lp-section--hosting-preview .lp-section__head h2 {
  color: var(--lp-navy);
}

.lp-hosting-pricing--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 95, 0.09);
  background: #ffffff;
  overflow: visible;
  isolation: isolate;
  transition: transform 0.28s var(--lp-ease), box-shadow 0.28s var(--lp-ease), border-color 0.28s var(--lp-ease);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card.has-badge {
  padding-top: 1.65rem;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(45, 212, 191, 0.08), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s var(--lp-ease);
  overflow: hidden;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(30, 58, 95, 0.11);
  border-color: rgba(45, 212, 191, 0.32);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card:hover .lp-hosting-pricing__glow {
  opacity: 1;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card.is-featured {
  border-color: rgba(45, 212, 191, 0.5);
  background: linear-gradient(165deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow: 0 16px 40px rgba(45, 212, 191, 0.16);
  transform: scale(1.02);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card.is-featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card.is-featured .lp-hosting-pricing__glow {
  opacity: 1;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(45, 212, 191, 0.14), transparent 70%);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__card.is-featured::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--lp-navy) 0%, var(--lp-teal) 50%, var(--lp-teal-dark) 100%);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__badge {
  position: absolute;
  top: -0.58rem;
  inset-inline-start: 1rem;
  inset-inline-end: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.36rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lp-navy) 0%, #2d4a73 100%);
  color: var(--lp-teal);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.24);
  z-index: 3;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__badge i {
  font-size: 0.68rem;
  color: #5eead4;
}

[dir="rtl"] .lp-hosting-pricing--compact .lp-hosting-pricing__badge {
  transform: none;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon {
  position: relative;
  width: 3.85rem;
  height: 3.85rem;
  margin: 0;
  flex-shrink: 0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 8px 22px rgba(30, 58, 95, 0.16);
  overflow: hidden;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, transparent 52%);
  pointer-events: none;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon i {
  position: relative;
  z-index: 1;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon--premium {
  background: linear-gradient(145deg, var(--lp-navy) 0%, #2d4a73 100%);
  color: var(--lp-teal);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon--business {
  background: linear-gradient(145deg, var(--lp-teal-dark) 0%, var(--lp-teal) 100%);
  color: #ffffff;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon--cloud {
  background: linear-gradient(160deg, var(--lp-navy) 0%, var(--lp-teal-dark) 50%, var(--lp-teal) 100%);
  color: #ffffff;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__icon--default {
  background: linear-gradient(145deg, var(--lp-navy) 0%, #2d4a73 100%);
  color: var(--lp-teal);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__head {
  flex: 1;
  min-width: 0;
  text-align: start;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__head h3 {
  margin: 0 0 0.2rem;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--lp-navy);
  letter-spacing: -0.01em;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(30, 58, 95, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.62rem 0.32rem 0.38rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  font-size: 0.74rem;
  font-weight: 700;
  color: #0f766e;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__meta-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lp-teal-dark) 0%, var(--lp-teal) 100%);
  color: #fff;
  font-size: 0.62rem;
  flex-shrink: 0;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__features {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.28rem 0;
  font-size: 0.79rem;
  line-height: 1.48;
  color: rgba(30, 58, 95, 0.72);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__features i {
  margin: 0.12rem 0 0;
  color: var(--lp-teal-dark);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__foot {
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(30, 58, 95, 0.07);
  display: grid;
  gap: 0.7rem;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__price strong {
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  color: var(--lp-navy);
  letter-spacing: -0.02em;
}

.lp-hosting-pricing--compact .lp-hosting-pricing__price small {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(30, 58, 95, 0.5);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1.5px solid rgba(30, 58, 95, 0.1);
  background: #fff;
  color: var(--lp-navy);
  text-decoration: none;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.22s var(--lp-ease), border-color 0.22s var(--lp-ease), transform 0.22s var(--lp-ease), box-shadow 0.22s var(--lp-ease);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__cta:hover {
  background: #f0fdfa;
  border-color: rgba(45, 212, 191, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.12);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__cta--featured {
  background: linear-gradient(135deg, var(--lp-navy) 0%, #2d4a73 100%);
  border-color: var(--lp-teal);
  color: #fff;
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.2);
}

.lp-hosting-pricing--compact .lp-hosting-pricing__cta--featured:hover {
  background: linear-gradient(135deg, #2d4a73 0%, var(--lp-navy) 100%);
  box-shadow: 0 14px 32px rgba(45, 212, 191, 0.22);
}

@media (max-width: 960px) {
  .lp-hosting-pricing--compact {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }

  .lp-hosting-pricing--compact .lp-hosting-pricing__card.is-featured {
    transform: none;
  }

  .lp-hosting-pricing--compact .lp-hosting-pricing__card.is-featured:hover {
    transform: translateY(-5px);
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .lp-hosting-pricing--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .lp-hosting-pricing--compact .lp-hosting-pricing__head h3 {
    font-size: 1.05rem;
  }

  .lp-hosting-pricing--compact .lp-hosting-pricing__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.3rem;
  }
}

.lp-hosting-pricing__card {
  position: relative;
  padding: 1.35rem;
  border-radius: 20px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.05);
}

.lp-hosting-pricing__card.is-featured {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 12px 36px rgba(45, 212, 191, 0.15);
}

.lp-hosting-pricing__badge {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #2dd4bf;
  font-size: 0.68rem;
  font-weight: 800;
}

.lp-hosting-pricing__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.05);
  margin-bottom: 0.75rem;
}

.lp-hosting-pricing__desc {
  color: var(--lp-muted);
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
}

.lp-hosting-pricing__price strong {
  font-size: 1.6rem;
}

.lp-hosting-pricing__yearly {
  font-size: 0.82rem;
  color: var(--lp-muted);
  margin: 0 0 0.75rem;
}

.lp-hosting-pricing__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.85rem;
}

.lp-hosting-pricing__features li {
  padding: 0.25rem 0;
}

.lp-hosting-pricing__features i {
  color: #14b8a6;
  margin-inline-end: 0.35rem;
}

.lp-hosting-pricing__actions {
  display: grid;
  gap: 0.45rem;
}

.lp-hosting-pay {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.lp-hosting-pay__opt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.35rem 0;
  font-weight: 600;
}

.lp-hosting-gateway-picker {
  margin-bottom: 1rem;
}

.lp-hosting-gateway-group__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin: 0.5rem 0 0.4rem;
}

.lp-hosting-gateway-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lp-hosting-gateway-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  background: #fff;
}

.lp-hosting-gateway-option:has(input:checked) {
  border-color: var(--lp-primary);
  background: var(--lp-soft);
}

.lp-hosting-gateway-option input { accent-color: var(--lp-primary); }

.lp-hosting-gateway-option span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-hosting-gateway-option__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  background: #fff;
}

.lp-hosting-online-pay {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed var(--lp-border);
  border-radius: 12px;
  background: var(--lp-soft);
}

.lp-hosting-online-pay--card {
  margin-top: 1.25rem;
}

.lp-hosting-online-pay__wallet {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 0.75rem;
  margin: 0.75rem 0;
}

.lp-hosting-online-pay__hint {
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin: 0.5rem 0 0;
}

.lp-hosting-online-pay__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.lp-hosting-track-pay-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.lp-account-pay-order {
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-account-pay-result {
  margin-bottom: 1rem;
}

.lp-hosting-modal__price {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 1rem;
}

.lp-hosting-faq__item {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  background: #fff;
}

.lp-hosting-faq__item summary {
  cursor: pointer;
  font-weight: 800;
}

.lp-hosting-track-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.lp-hosting-track-form input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
}

.lp-hosting-track-card {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: #fff;
}

.lp-hosting-track-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.lp-hosting-track-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.05);
}

.lp-hosting-track-card dt {
  color: var(--lp-muted);
  font-size: 0.85rem;
}

.lp-hosting-bank {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.1);
}

.lp-alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.lp-alert--ok {
  background: rgba(20, 184, 166, 0.12);
  color: #15803d;
}

.lp-alert--warn {
  background: rgba(234, 88, 12, 0.12);
  color: #c2410c;
}

/* ── Account (حساب موحّد) ── */
.lp-body-account {
  background: #f2f3f6;
}

.lp-body-account-guest {
  background: #f2f3f6;
}

.lp-body-account-guest .lp-main {
  padding-top: 0;
}

.lp-body-account-guest .lp-header,
.lp-body-account-guest .lp-nav,
.lp-body-account-guest .lp-nav-overlay,
.lp-body-account-guest .lp-footer,
.lp-body-account-guest .lp-fabs,
.lp-body-account-guest #lp-assistant-modal {
  display: none !important;
}

.lp-body-account .lp-cta-strip {
  display: none;
}

.lp-nav__account {
  margin-top: 0.35rem;
  font-weight: 800;
  border-top: 1px solid var(--lp-border);
  padding-top: 0.85rem !important;
}

.lp-nav__account.is-logged-in {
  color: #15803d;
}

/* Page shell */
.lp-account-page {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  min-height: calc(100vh - 4rem);
}

.lp-account-page--auth {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.lp-account-page__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(45, 212, 191, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(17, 24, 39, 0.05), transparent 50%),
    linear-gradient(180deg, #eef0f4 0%, #f8f9fb 45%, #eef0f4 100%);
  pointer-events: none;
}

.lp-account-page__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
}

.lp-account-page__inner--auth {
  max-width: 420px;
  margin: 0 auto;
}

.lp-account-alert {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  animation: lpAccountIn 0.35s ease;
  font-size: 0.88rem;
}

/* Hostinger-style auth (centered, no side panel) */
.lp-account-auth {
  position: relative;
  width: 100%;
  animation: lpAccountIn 0.4s ease;
}

.lp-account-auth__back {
  position: fixed;
  top: 1.15rem;
  inset-inline-start: 1.15rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: var(--lp-text);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(30, 58, 95, 0.06);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lp-account-auth__back:hover {
  border-color: #d1d5db;
  background: #fafbfc;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.lp-account-auth__back i {
  font-size: 0.8rem;
  opacity: 0.75;
}

[dir="ltr"] .lp-account-auth__back i {
  transform: scaleX(-1);
}

.lp-account-auth__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 800;
  font-size: 1.15rem;
}

.lp-account-auth__logo img {
  border-radius: 12px;
}

.lp-account-auth__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: 0 1px 3px rgba(30, 58, 95, 0.04);
}

.lp-account-auth__title {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  color: var(--lp-text);
}

.lp-account-form[hidden] {
  display: none !important;
}

.lp-account-field {
  display: block;
  margin-bottom: 1.15rem;
}

.lp-account-field--optional .lp-account-field__label::after {
  content: ' (اختياري)';
  font-weight: 500;
  color: var(--lp-muted);
  font-size: 0.78rem;
}

html[lang="en"] .lp-account-field--optional .lp-account-field__label::after {
  content: ' (optional)';
}

.lp-account-field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #36344d;
}

.lp-account-input {
  display: block;
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid #d8dae0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--lp-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-account-input:focus {
  outline: none;
  border-color: #2d4a73;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.06);
}

.lp-account-input::placeholder {
  color: #9ca3af;
}

.lp-account-pass {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-account-pass .lp-account-input {
  padding-inline-end: 2.75rem;
}

.lp-account-pass__toggle {
  position: absolute;
  inset-inline-end: 0.25rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  transition: color 0.15s;
}

.lp-account-pass__toggle:hover {
  color: var(--lp-text);
}

.lp-account-submit {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.82rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: #2d4a73;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lp-account-submit:hover {
  background: #2d4a73;
}

.lp-account-submit:active {
  transform: scale(0.99);
}

.lp-account-auth__switch {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-account-auth__switch[hidden] {
  display: none !important;
}

.lp-account-auth__link {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: #2d4a73;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-account-auth__link:hover {
  color: #b8860b;
}

.lp-account-auth__note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #eef0f4;
  text-align: center;
  color: #9ca3af;
  font-size: 0.8rem;
  line-height: 1.5;
}

.lp-account-auth__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.85rem;
}

.lp-account-auth__lang a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.4rem;
}

.lp-account-auth__lang a.is-active {
  color: var(--lp-text);
  font-weight: 800;
}

.lp-account-auth__lang span {
  color: #d1d5db;
}

/* Dashboard (logged in) */
.lp-account-dashboard {
  animation: lpAccountIn 0.5s var(--lp-ease);
}

.lp-account-dash-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--lp-gradient);
  color: #fff;
}

.lp-account-dash-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(45, 212, 191, 0.2), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.lp-account-dash-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1.75rem 1.75rem;
}

.lp-account-profile__avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(45, 212, 191, 0.55);
  color: #2dd4bf;
  font-weight: 900;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.lp-account-dash-hero__greet {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
}

.lp-account-dash-hero__text h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.lp-account-dash-hero__text p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.lp-account-logout-btn {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  white-space: nowrap;
}

.lp-account-logout-btn:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

.lp-account-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lp-account-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.15rem 0.75rem;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-account-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.07);
  border-color: rgba(30, 58, 95, 0.12);
}

.lp-account-action__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d4a73 0%, #2d4a73 100%);
  color: #2dd4bf;
  font-size: 1.1rem;
}

.lp-account-section--card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.04);
}

.lp-account-section h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-account-section h3 i {
  color: #b8860b;
}

.lp-account-order {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fafbfc;
  margin-bottom: 0.65rem;
  transition: border-color 0.2s;
}

.lp-account-order:last-child {
  margin-bottom: 0;
}

.lp-account-order:hover {
  border-color: rgba(30, 58, 95, 0.14);
}

.lp-account-order header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.lp-account-order header strong {
  font-size: 0.92rem;
}

.lp-account-order__status {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #15803d;
}

.lp-account-order footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-account-order footer a {
  font-weight: 700;
  color: var(--lp-text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-account-order footer a:hover {
  color: #b8860b;
}

.lp-account-empty {
  color: var(--lp-muted);
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.lp-account-empty i {
  font-size: 1.75rem;
  opacity: 0.35;
}

.lp-account-dash-intro {
  margin: -0.5rem 0 1.25rem;
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-account-expiry-alerts {
  background: #f0fdfa;
  border: 1px solid #fcd34d;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

.lp-account-expiry-alerts__head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.lp-account-expiry-alerts__head i {
  color: #d97706;
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.lp-account-expiry-alerts__head strong {
  display: block;
  font-size: 0.92rem;
}

.lp-account-expiry-alerts__head span {
  display: block;
  font-size: 0.8rem;
  color: var(--lp-muted);
  margin-top: 0.15rem;
}

.lp-account-expiry-alerts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-account-expiry-alerts__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.65);
}

.lp-account-expiry-alerts__item--urgent,
.lp-account-expiry-alerts__item--expired {
  background: #fef2f2;
  color: #b91c1c;
}

.lp-account-expiry-alerts__renew {
  margin: 0;
}

.lp-account-expiry-alerts__renew button {
  border: none;
  background: #2d4a73;
  color: #fff;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
}

.lp-svc-card__expiry {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-svc-card__expiry--warn {
  background: #f0fdfa;
  color: #a16207;
}

.lp-svc-card__expiry--urgent,
.lp-svc-card__expiry--expired {
  background: #fef2f2;
  color: #b91c1c;
}

.lp-svc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.lp-svc-card__renew-form {
  flex: 1;
  margin: 0;
  min-width: 120px;
}

.lp-svc-card__renew {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
  color: var(--lp-text);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.lp-svc-card__renew:hover {
  border-color: #2d4a73;
  background: #fafbfc;
}

.lp-svc-card__actions .lp-svc-card__panel {
  flex: 1;
  margin-top: 0;
  min-width: 120px;
}

.lp-svc-card__dns {
  border-top: 1px solid var(--lp-border);
  padding-top: 0.65rem;
}

.lp-svc-card__dns summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-dns-table-wrap {
  overflow-x: auto;
  margin-top: 0.65rem;
}

.lp-dns-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.lp-dns-table th,
.lp-dns-table td {
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid var(--lp-border);
  text-align: start;
}

.lp-dns-table th {
  color: var(--lp-muted);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.lp-dns-table code {
  font-size: 0.78rem;
  background: #f3f4f6;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  word-break: break-all;
}

.lp-dns-empty {
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
  text-align: center;
  padding: 0.75rem;
}

.lp-dns-domain-block {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}

.lp-dns-domain-block__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-dns-domain-block__head .lp-dns-domain-block__title {
  margin: 0;
}

.lp-dns-domain-block__title i {
  color: var(--lp-gold);
}

.lp-dns-manager__toolbar {
  margin-bottom: 1rem;
}

.lp-dns-manager__select {
  max-width: 320px;
}

.lp-dns-table--edit .lp-dns-input {
  width: 100%;
  min-width: 0;
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
}

.lp-dns-input--ttl {
  max-width: 5.5rem;
}

.lp-dns-manager__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #fafbfc;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
}

/* DNS hub — enhanced manager */
.lp-dns-hub {
  max-width: 920px;
}

.lp-dns-hub__shell {
  display: grid;
  gap: 1rem;
}

.lp-dns-manager__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-dns-manager__select {
  max-width: 360px;
  flex: 1 1 240px;
}

.lp-dns-manager__select .lp-account-field__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-dns-manager__select .lp-account-field__label i {
  color: var(--lp-gold);
}

.lp-dns-manager__stats,
.lp-dns-manager__stats--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.lp-dns-manager__stats--inline {
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
}

.lp-dns-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-dns-stat i {
  color: var(--lp-gold);
  font-size: 0.72rem;
}

.lp-dns-type-chip {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--lp-gold-soft);
  color: var(--lp-gold);
}

.lp-dns-type-chip--a,
.lp-dns-type-chip--aaaa { background: #f3f4f6; color: #2d4a73; }
.lp-dns-type-chip--cname { background: var(--lp-green-muted); color: var(--lp-gold); }
.lp-dns-type-chip--mx { background: #f0fdfa; color: #a16207; }
.lp-dns-type-chip--txt { background: #ecfdf5; color: #15803d; }
.lp-dns-type-chip--ns { background: #f3f4f6; color: #374151; }

.lp-dns-domain-block {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 0;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
  border-top: 3px solid #2dd4bf;
}

.lp-dns-domain-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.lp-dns-domain-block__count {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--lp-gold-soft);
  color: var(--lp-gold);
}

.lp-dns-records-card {
  background: #fafbfc;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 0.35rem;
}

.lp-dns-table--edit thead th {
  background: #f3f4f6;
  border-bottom: 1px solid var(--lp-border);
}

.lp-dns-table--edit tbody tr:hover {
  background: rgba(45, 212, 191, 0.06);
}

.lp-dns-table--edit .lp-dns-input {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0.55rem;
  font-size: 0.82rem;
  border-radius: 8px;
}

.lp-dns-input--type {
  max-width: 6.5rem;
  font-weight: 700;
}

.lp-dns-input--value {
  min-width: 10rem;
}

.lp-dns-row-actions {
  width: 2.5rem;
  text-align: center;
}

.lp-dns-add-btn {
  margin-top: 0.75rem;
}

.lp-dns-ns-block {
  margin-top: 0;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-dns-ns-block__title i {
  color: var(--lp-gold);
}

.lp-dns-ns-field {
  display: grid;
  gap: 0.25rem;
}

.lp-dns-ns-field span {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lp-muted);
  text-transform: uppercase;
}

.lp-dns-save-hint {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.8rem;
  color: var(--lp-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-dns-save-hint i {
  color: #14b8a6;
}

.lp-dns-save-btn {
  min-width: 180px;
  min-height: 2.75rem;
  font-size: 0.9rem;
}

.lp-dns-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-dns-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-dns-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-dns-empty-hub p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-dns-empty-hub__actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.lp-dns-manager--embedded .lp-dns-hub__shell {
  gap: 0.85rem;
}

@media (max-width: 720px) {
  .lp-dns-manager__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-dns-manager__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-dns-save-btn {
    width: 100%;
  }

  .lp-dns-table--edit thead {
    display: none;
  }

  .lp-dns-table--edit tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    padding: 0.65rem 0.35rem;
    border-bottom: 1px solid var(--lp-border);
  }

  .lp-dns-table--edit td {
    border: none;
    padding: 0;
  }

  .lp-dns-table--edit td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--lp-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
  }

  .lp-dns-row-actions {
    grid-column: 1 / -1;
    width: auto;
    text-align: end;
  }

  .lp-dns-ns-grid {
    grid-template-columns: 1fr;
  }
}

.lp-dns-ns-block__title {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-dns-ns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.lp-ssl-list {
  display: grid;
  gap: 0.85rem;
}

/* SSL hub — #1e3a5f & yellow brand */
.lp-ssl-hub {
  max-width: 920px;
}

.lp-ssl-hub__shell {
  display: grid;
  gap: 1rem;
}

.lp-ssl-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-ssl-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-ssl-stat i {
  color: #2d4a73;
  font-size: 0.72rem;
}

.lp-ssl-stat--ok {
  background: #ecfdf5;
  color: #15803d;
}

.lp-ssl-stat--ok i {
  color: #15803d;
}

.lp-ssl-stat--warn {
  background: #f0fdfa;
  color: #a16207;
}

.lp-ssl-stat--warn i {
  color: #b8860b;
}

.lp-ssl-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
  border-top: 3px solid #2dd4bf;
}

.lp-ssl-card--ok {
  border-top-color: #14b8a6;
}

.lp-ssl-card--warn {
  border-top-color: #2dd4bf;
}

.lp-ssl-card--bad {
  border-top-color: #ef4444;
}

.lp-ssl-card--pending {
  border-top-color: #b8860b;
}

.lp-ssl-card__shield {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.15);
}

.lp-ssl-card__main {
  min-width: 0;
}

.lp-ssl-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}

.lp-ssl-card__title strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-all;
}

.lp-ssl-card__title small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.lp-ssl-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lp-ssl-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-ssl-card__chip i {
  color: #b8860b;
  font-size: 0.65rem;
}

.lp-ssl-card__expiry {
  text-align: center;
  min-width: 4rem;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  background: #fafbfc;
  border: 1px solid var(--lp-border);
}

.lp-ssl-card__expiry strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #2d4a73;
}

.lp-ssl-card__expiry small {
  display: block;
  font-size: 0.62rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-ssl-card__expiry--warn {
  background: #f0fdfa;
  border-color: #fde68a;
}

.lp-ssl-card__expiry--warn strong {
  color: #a16207;
}

.lp-ssl-card__expiry--bad {
  background: #fef2f2;
  border-color: #fecaca;
}

.lp-ssl-card__expiry--bad strong {
  color: #b91c1c;
}

.lp-ssl-card__manage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
  color: #2d4a73;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
}

.lp-ssl-card__manage:hover {
  border-color: #2d4a73;
  background: #fafbfc;
}

.lp-ssl-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-ssl-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-ssl-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-ssl-empty-hub p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-ssl-empty-hub__actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.lp-ssl-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.lp-ssl-card__meta {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.85rem;
}

.lp-ssl-card__meta div {
  display: flex;
  gap: 0.5rem;
}

.lp-ssl-card__meta dt {
  color: var(--lp-muted);
  min-width: 4.5rem;
}

.lp-ssl-card__meta dd {
  margin: 0;
  font-weight: 600;
}

.lp-ssl-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.lp-ssl-pill--ok {
  background: #ccfbf1;
  color: #0f766e;
}

.lp-ssl-pill--warn {
  background: #fef3c7;
  color: #92400e;
}

.lp-ssl-pill--bad {
  background: #fee2e2;
  color: #991b1b;
}

.lp-ssl-pill--pending {
  background: #f0fdfa;
  color: #92400e;
}

.lp-ssl-pill--none {
  background: #f3f4f6;
  color: #6b7280;
}

@media (max-width: 720px) {
  .lp-ssl-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "shield main"
      "expiry expiry"
      "manage manage";
  }

  .lp-ssl-card__shield { grid-area: shield; }
  .lp-ssl-card__main { grid-area: main; }
  .lp-ssl-card__expiry {
    grid-area: expiry;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
  }

  .lp-ssl-card__expiry strong,
  .lp-ssl-card__expiry small {
    display: inline;
    font-size: 0.85rem;
  }

  .lp-ssl-card__manage {
    grid-area: manage;
    width: 100%;
  }
}

/* Email hub — #1e3a5f & yellow brand */
.lp-email-hub {
  max-width: 920px;
}

.lp-email-hub__shell {
  display: grid;
  gap: 1rem;
}

.lp-email-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.lp-email-notice--warn {
  color: #92400e;
  background: #f0fdfa;
  border-color: #fde68a;
}

.lp-email-manager__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-email-manager__select {
  flex: 1 1 240px;
  max-width: 360px;
}

.lp-email-manager__select .lp-account-field__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-email-manager__select .lp-account-field__label i {
  color: var(--lp-gold);
}

.lp-email-webmail-btn {
  flex-shrink: 0;
}

.lp-email-webmail-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  max-width: min(100%, 320px);
}

.lp-email-webmail-hint {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--lp-muted, #64748b);
}

.lp-email-usage {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
}

.lp-email-usage__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
}

.lp-email-usage__head span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-email-usage__head span i {
  color: var(--lp-gold);
}

.lp-email-usage__head strong {
  font-size: 0.9rem;
}

.lp-email-usage__track {
  height: 8px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
}

.lp-email-usage__fill {
  height: 100%;
  background: linear-gradient(90deg, #2d4a73, #2dd4bf);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.lp-email-accounts-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border-top: 3px solid #2dd4bf;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-email-accounts-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.lp-email-accounts-card__head h4 {
  margin: 0;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-email-accounts-card__head h4 i {
  color: var(--lp-gold);
}

.lp-email-accounts-card__count {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--lp-gold-soft);
  color: var(--lp-gold);
}

.lp-email-list {
  display: grid;
  gap: 0.55rem;
}

.lp-email-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  background: #fafbfc;
  border: 1px solid #ececec;
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
}

.lp-email-item:hover {
  border-color: #d1d5db;
  background: #fff;
}

.lp-email-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lp-email-item__body strong {
  display: block;
  font-size: 0.88rem;
  word-break: break-all;
}

.lp-email-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.lp-email-item__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-email-item__chip i {
  color: var(--lp-gold);
  font-size: 0.62rem;
}

.lp-email-item__chip--status {
  background: #ecfdf5;
  color: #15803d;
}

.lp-email-item__delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lp-email-item__delete:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

.lp-email-empty-inline {
  text-align: center;
  padding: 2rem 1rem;
}

.lp-email-empty-inline__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #f3f4f6;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.lp-email-empty-inline p {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.lp-email-empty-inline small {
  color: var(--lp-muted);
  font-size: 0.8rem;
}

.lp-email-create {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  border-top: 3px solid #2d4a73;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-email-create__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
}

.lp-email-create__head h4 {
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-email-create__head h4 i {
  color: var(--lp-gold);
}

.lp-email-create__head span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-email-create__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.lp-email-create__actions {
  display: flex;
  justify-content: flex-end;
}

.lp-email-create__actions .lp-btn {
  min-width: 180px;
  min-height: 2.65rem;
}

.lp-email-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-email-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-email-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-email-empty-hub p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-email-empty-hub__actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.lp-email-manager--embedded .lp-email-hub__shell {
  gap: 0.85rem;
}

/* Orders hub — #1e3a5f & yellow brand */
.lp-orders-hub {
  max-width: 920px;
}

.lp-orders-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-orders-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-orders-stat i {
  color: #2d4a73;
  font-size: 0.72rem;
}

.lp-orders-stat--ok {
  background: #ecfdf5;
  color: #15803d;
}

.lp-orders-stat--ok i {
  color: #15803d;
}

.lp-orders-stat--warn {
  background: #f0fdfa;
  color: #a16207;
}

.lp-orders-stat--warn i {
  color: #b8860b;
}

.lp-account-orders--hub {
  display: grid;
  gap: 0.65rem;
}

.lp-account-orders--hub .lp-account-order {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
  border-top: 3px solid #2dd4bf;
}

.lp-account-orders--hub .lp-account-order--domain {
  border-top-color: #2d4a73;
}

.lp-account-orders--hub .lp-account-order--vps {
  border-top-color: #374151;
}

.lp-account-orders--hub .lp-account-order__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.lp-account-orders--hub .lp-account-order__body {
  min-width: 0;
}

.lp-account-orders--hub .lp-account-order__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.lp-account-orders--hub .lp-account-order__title strong {
  display: block;
  font-size: 0.92rem;
}

.lp-account-orders--hub .lp-account-order__type {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-muted);
  text-transform: uppercase;
}

.lp-account-orders--hub .lp-account-order__status {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  background: #f3f4f6;
  color: #374151;
}

.lp-account-orders--hub .lp-account-order__status--completed,
.lp-account-orders--hub .lp-account-order__status--paid {
  background: #ecfdf5;
  color: #15803d;
}

.lp-account-orders--hub .lp-account-order__status--pending,
.lp-account-orders--hub .lp-account-order__status--processing {
  background: #f0fdfa;
  color: #a16207;
}

.lp-account-orders--hub .lp-account-order__status--failed,
.lp-account-orders--hub .lp-account-order__status--cancelled {
  background: #fef2f2;
  color: #b91c1c;
}

.lp-account-orders--hub .lp-account-order__label {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #374151;
}

.lp-account-orders--hub .lp-account-order__bundle {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.lp-account-orders--hub .lp-account-order__bundle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.lp-account-orders--hub .lp-account-order__bundle-head strong {
  font-size: 0.8rem;
  color: #111827;
}

.lp-account-orders--hub .lp-account-order__bundle-head span {
  font-size: 0.74rem;
  font-weight: 800;
  color: #6b7280;
}

.lp-account-orders--hub .lp-account-order__bundle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.lp-account-orders--hub .lp-account-order__bundle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px dashed rgba(17, 24, 39, 0.08);
}

.lp-account-orders--hub .lp-account-order__bundle-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.lp-account-orders--hub .lp-account-order__bundle-label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f2937;
}

.lp-account-orders--hub .lp-account-order__bundle-label i {
  color: #b8860b;
}

.lp-account-orders--hub .lp-account-order__bundle-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-account-orders--hub .lp-account-order__bundle-meta small {
  font-size: 0.72rem;
  color: #6b7280;
}

.lp-account-orders--hub .lp-account-order__bundle-meta strong {
  font-size: 0.78rem;
  color: #111827;
}

.lp-account-orders--hub .lp-account-order__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-top: 0.55rem;
}

.lp-account-orders--hub .lp-account-order__price {
  font-size: 0.92rem;
  font-weight: 900;
  color: #2d4a73;
}

.lp-account-orders--hub .lp-account-order__date {
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-account-orders--hub .lp-account-order__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.82rem;
}

.lp-orders-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-orders-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-orders-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-orders-empty-hub p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-orders-empty-hub__actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 720px) {
  .lp-account-orders--hub .lp-account-order {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon body"
      "pay pay";
  }

  .lp-account-orders--hub .lp-account-order__icon { grid-area: icon; }
  .lp-account-orders--hub .lp-account-order__body { grid-area: body; }
  .lp-account-orders--hub .lp-account-order__pay {
    grid-area: pay;
    width: 100%;
  }

  .lp-account-orders--hub .lp-account-order__bundle-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-account-orders--hub .lp-account-order__bundle-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .lp-dns-ns-grid,
  .lp-email-create__grid {
    grid-template-columns: 1fr;
  }

  .lp-email-manager__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-email-webmail-btn {
    width: 100%;
    justify-content: center;
  }

  .lp-email-create__actions .lp-btn {
    width: 100%;
  }
}

.lp-body-account-service .lp-account-page__inner {
  max-width: 1080px;
}

.lp-service-detail {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.5rem;
}

.lp-service-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-decoration: none;
  margin-bottom: 1rem;
}

.lp-service-detail__back:hover {
  color: #2d4a73;
}

.lp-service-detail__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.lp-service-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #2d4a73;
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.lp-service-detail__title-wrap {
  flex: 1;
  min-width: 0;
}

.lp-service-detail__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.lp-service-detail__domain,
.lp-service-detail__plan {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-service-detail__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--lp-border);
  padding-bottom: 0.65rem;
}

.lp-service-detail__tab {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--lp-muted);
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-service-detail__tab i {
  font-size: 0.75rem;
  opacity: 0.85;
}

.lp-service-detail__tab.is-active {
  background: #2d4a73;
  color: #fff;
}

.lp-service-detail__tab.is-active i {
  color: var(--lp-accent);
  opacity: 1;
}

.lp-svc-detail-viz {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-svc-detail-viz__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0.85rem;
}

.lp-svc-detail-expiry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}

.lp-svc-detail-expiry--urgent,
.lp-svc-detail-expiry--expired {
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.lp-svc-detail-expiry__ring {
  --ring-circ: 301.59;
  --ring-pct: 0;
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
}

.lp-svc-detail-expiry__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.lp-svc-detail-expiry__track {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 10;
}

.lp-svc-detail-expiry__progress {
  fill: none;
  stroke: #2dd4bf;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: var(--ring-circ);
  stroke-dashoffset: calc(var(--ring-circ) * (1 - var(--ring-pct) / 100));
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-svc-detail-expiry--urgent .lp-svc-detail-expiry__progress,
.lp-svc-detail-expiry--expired .lp-svc-detail-expiry__progress {
  stroke: #ef4444;
}

.lp-svc-detail-expiry__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-svc-detail-expiry__label strong {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.lp-svc-detail-expiry__label span {
  font-size: 0.68rem;
  color: var(--lp-muted);
  font-weight: 700;
  margin-top: 0.15rem;
}

.lp-svc-detail-expiry__info {
  flex: 1;
  min-width: 0;
}

.lp-svc-detail-expiry__info h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-svc-detail-expiry__info h3 i { color: var(--lp-accent); }

.lp-svc-detail-expiry__date {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 900;
}

.lp-svc-detail-expiry__hint {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-svc-detail-expiry__countdown {
  display: inline-flex;
  margin-bottom: 0.55rem;
}

.lp-svc-detail-expiry__track {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.08);
  overflow: hidden;
}

.lp-svc-detail-expiry__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2dd4bf, #fbbf24);
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-svc-detail-expiry--urgent .lp-svc-detail-expiry__fill,
.lp-svc-detail-expiry--expired .lp-svc-detail-expiry__fill {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.lp-svc-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.lp-svc-detail-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.85rem 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.04);
}

.lp-svc-detail-stat i {
  font-size: 0.95rem;
  color: var(--lp-accent);
}

.lp-svc-detail-stat strong {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
}

.lp-svc-detail-stat span {
  font-size: 0.68rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-svc-detail-stat.is-ssl i { color: #14b8a6; }
.lp-svc-detail-stat.is-status i { color: #2d4a73; }

.lp-svc-detail-viz__charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.lp-svc-detail-chart-card,
.lp-svc-detail-quick,
.lp-svc-detail-panel-tools {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.04);
}

.lp-svc-detail-panel-tools {
  grid-column: 1 / -1;
}

.lp-svc-detail-panel-tools h4 {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-svc-detail-panel-tools h4 i {
  color: var(--lp-accent);
}

.lp-svc-detail-panel-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.55rem;
}

.lp-svc-detail-panel-tools__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.45rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(180deg, #fff, #f8f8f8);
  color: #2d4a73;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.lp-svc-detail-panel-tools__btn i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #2d4a73, #1e3a5f);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.18);
  transition: color 0.15s, background 0.15s;
}

.lp-svc-detail-panel-tools__btn:hover {
  border-color: var(--lp-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.08);
}

.lp-svc-detail-panel-tools__btn:hover i {
  background: linear-gradient(145deg, #222, #2d4a73);
  color: #2dd4bf;
}

.lp-svc-detail-panel-tools__btn:active {
  transform: translateY(0);
}

a.lp-svc-detail-panel-tools__btn {
  text-decoration: none;
  color: inherit;
}

.lp-svc-detail-panel-tools__btn span {
  line-height: 1.25;
  text-align: center;
}

/* ── Embedded site manager (Rwasem branded) ── */
.lp-site-manager {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-site-manager__hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: #050505;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.18);
}

.lp-site-manager__hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.25);
}

.lp-site-manager__hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-site-manager__hero h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-site-manager__hero p {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: #2dd4bf;
}

.lp-site-manager__hero .lp-btn {
  margin-inline-start: auto;
}

.lp-site-manager__tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
}

.lp-site-manager__tabs::-webkit-scrollbar {
  display: none;
}

.lp-site-manager__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  color: #334155;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.lp-site-manager__tab.is-active {
  background: #050505;
  border-color: #050505;
  color: #2dd4bf;
}

.lp-site-manager__tab i {
  font-size: 0.9rem;
}

.lp-site-manager__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lp-site-manager__alert.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.lp-site-manager__alert.is-warn {
  background: #f0fdfa;
  border: 1px solid #fde68a;
  color: #92400e;
}

.lp-site-manager__sync-row {
  margin: 0.85rem 0 0;
  text-align: center;
}

.lp-site-manager__body {
  position: relative;
  min-height: 220px;
}

.lp-site-manager .is-hidden,
.lp-site-manager__loading.is-hidden,
.lp-site-manager__alert.is-hidden,
.lp-site-manager__setup.is-hidden,
.lp-site-manager__panel.is-hidden {
  display: none !important;
}

.lp-site-manager__loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 1rem;
  text-align: center;
  color: #64748b;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
}

.lp-site-manager__splash-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.28);
  animation: lp-site-mgr-pulse 2s ease-in-out infinite;
}

@keyframes lp-site-mgr-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.lp-site-manager__spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(45, 212, 191, 0.2);
  border-top-color: #2dd4bf;
  border-radius: 50%;
  animation: lp-site-mgr-spin 0.75s linear infinite;
}

@keyframes lp-site-mgr-spin {
  to { transform: rotate(360deg); }
}

.lp-site-manager__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem;
}

.lp-site-manager__card {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.04);
}

.lp-site-manager__card h4 {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-site-manager__card h4 i {
  color: var(--lp-accent);
}

.lp-site-manager__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}

.lp-site-manager__stat {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(180deg, #fff, #fafafa);
  text-align: center;
}

.lp-site-manager__stat i {
  font-size: 1.2rem;
  color: #2dd4bf;
  margin-bottom: 0.35rem;
}

.lp-site-manager__stat strong {
  display: block;
  font-size: 1rem;
}

.lp-site-manager__stat span {
  font-size: 0.72rem;
  color: #64748b;
}

.lp-site-manager__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-site-manager__list-item:last-child {
  border-bottom: none;
}

.lp-site-manager__list-item small {
  display: block;
  color: #64748b;
  font-size: 0.75rem;
}

.lp-site-manager__form {
  display: grid;
  gap: 0.65rem;
}

.lp-site-manager__form.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.lp-site-manager__setup {
  margin-bottom: 1rem;
}

.lp-site-manager__setup-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(155deg, #f0fdfa 0%, #fff 55%);
  border: 1px solid rgba(45, 212, 191, 0.35);
}

.lp-site-manager__setup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #1e3a5f;
  color: #2dd4bf;
  font-size: 1.35rem;
}

.lp-site-manager__setup-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.lp-site-manager__setup-card p {
  margin: 0 0 1.1rem;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.92rem;
}

.lp-site-manager__tabs.is-hidden {
  display: none;
}

.lp-site-manager__access-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--lp-border);
  background: linear-gradient(165deg, #fff 0%, #fafbfc 100%);
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.06);
}

.lp-site-manager__access-card--compact {
  max-width: 640px;
}

.lp-access-card__domain {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.14);
  color: #a16207;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lp-access-card__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.lp-access-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2d4a73 0%, #334155 100%);
  color: var(--lp-accent, #2dd4bf);
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.12);
}

.lp-access-card__head--compact {
  margin-bottom: 0.85rem;
}

.lp-access-card__head--compact h4 {
  margin: 0;
}

.lp-access-card__head h4 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.lp-access-card__head p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.88rem;
}

.lp-access-card__grid {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.lp-access-card__grid--inline {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.lp-access-card__field {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e8edf2;
}

.lp-access-card__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-access-card__value {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.lp-access-card__value code {
  font-size: 0.96rem;
  font-weight: 700;
  color: #1e3a5f;
  word-break: break-all;
}

.lp-access-card__tip {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #f0fdfa;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.84rem;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.lp-access-card__cta {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-align: inherit;
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  color: #2d4a73;
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-access-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(45, 212, 191, 0.34);
}

.lp-access-card__cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 58, 95, 0.08);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-access-card__cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.lp-access-card__cta-text strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.lp-access-card__cta-text small {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.4;
}

.lp-access-card__cta-arrow {
  font-size: 0.95rem;
  opacity: 0.75;
  flex-shrink: 0;
}

/* legacy access blocks — keep copy button */
.lp-site-manager__access-hero {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lp-site-manager__access-hero h4 {
  margin: 0 0 0.35rem;
}

.lp-site-manager__access-hero p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.92rem;
}

.lp-site-manager__access-creds {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.75rem;
}

.lp-site-manager__access-creds > div {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--lp-border);
}

.lp-site-manager__access-creds dt {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.lp-site-manager__access-creds dd {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lp-site-manager__access-creds code {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d4a73;
}

.lp-site-manager__copy {
  border: 1px solid var(--lp-border);
  background: #fff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: #334155;
}

.lp-site-manager__access-note {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #f0fdfa;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-site-manager__access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-panel-shell {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 520px;
}

.lp-panel-shell__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(255, 255, 255, 0.02));
}

.lp-panel-shell__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.88rem;
}

.lp-panel-shell__brand img {
  border-radius: 8px;
}

.lp-panel-shell__domain {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
}

.lp-panel-shell__creds {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.lp-panel-shell__creds code {
  font-size: 0.78rem;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  background: rgba(30, 58, 95, 0.06);
}

.lp-panel-shell__frame {
  width: 100%;
  flex: 1;
  min-height: 460px;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #0a0c10;
}

.lp-panel-launch {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px dashed rgba(45, 212, 191, 0.35);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.06), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.lp-panel-launch__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(45, 212, 191, 0.15);
  color: #14b8a6;
  font-size: 1.6rem;
}

.lp-panel-launch h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.lp-panel-launch p {
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 36rem;
  margin-inline: auto;
}

.lp-panel-launch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.lp-panel-shell__hint {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.lp-site-manager__empty,
.lp-site-manager__error {
  padding: 1rem;
  text-align: center;
  color: #64748b;
}

.lp-site-manager__error {
  color: #b91c1c;
}

@media (max-width: 640px) {
  .lp-site-manager__hero {
    flex-wrap: wrap;
  }

  .lp-site-manager__hero .lp-btn {
    margin-inline-start: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .lp-svc-detail-panel-tools__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-svc-detail-panel-tools__btn {
    padding: 0.7rem 0.3rem;
    font-size: 0.66rem;
  }

  .lp-svc-detail-panel-tools__btn i {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.9rem;
  }
}

.lp-svc-detail-chart-card h4,
.lp-svc-detail-quick h4 {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-svc-detail-chart-card h4 i,
.lp-svc-detail-quick h4 i {
  color: var(--lp-accent);
}

.lp-svc-detail-chart-wrap {
  height: 10rem;
}

.lp-svc-detail-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.lp-svc-detail-usage-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-svc-detail-quick__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.lp-svc-detail-quick__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(180deg, #fff, #fafafa);
  text-decoration: none;
  color: #2d4a73;
  font-size: 0.75rem;
  font-weight: 700;
  transition: border-color 0.15s, transform 0.15s;
}

.lp-svc-detail-quick__link i {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #2d4a73, #1e3a5f);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
}

.lp-svc-detail-quick__link:hover i {
  background: linear-gradient(145deg, #222, #2d4a73);
  color: #2dd4bf;
}

.lp-svc-detail-quick__link:hover {
  border-color: var(--lp-accent);
  transform: translateY(-2px);
}

.lp-svc-overview-card--details {
  background: #fafafa;
}

/* Site hub — domain + hosting linked */
.lp-site-hub {
  margin-bottom: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--lp-accent) 28%, var(--lp-border));
  background: linear-gradient(145deg, #fff 0%, color-mix(in srgb, var(--lp-accent) 7%, #fff) 55%, #fff 100%);
  box-shadow: 0 10px 32px rgba(30, 58, 95, 0.06);
}

.lp-site-hub__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lp-site-hub__head h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-site-hub__head h3 i { color: var(--lp-accent); }

.lp-site-hub__head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-site-hub__online {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.lp-site-hub__online i {
  font-size: 0.45rem;
  animation: lp-pulse-dot 1.4s ease-in-out infinite;
}

@keyframes lp-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.lp-site-hub__bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.lp-site-hub__node {
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.lp-site-hub__node.is-current {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-accent) 18%, transparent);
}

.lp-site-hub__node-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.12);
}

.lp-site-hub__node--domain .lp-site-hub__node-icon {
  background: linear-gradient(145deg, #2d4a73, #1e3a5f);
}

.lp-site-hub__node--hosting .lp-site-hub__node-icon {
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
}

.lp-site-hub__node:hover .lp-site-hub__node-icon {
  color: #2dd4bf;
}

.lp-site-hub__node-body strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 0.15rem;
}

.lp-site-hub__node-body small {
  display: block;
  font-size: 0.72rem;
  color: var(--lp-muted);
  margin-bottom: 0.35rem;
}

.lp-site-hub__node-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #2d4a73;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-site-hub__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--lp-accent);
  padding: 0 0.25rem;
}

.lp-site-hub__connector-line {
  width: 2px;
  height: 1.25rem;
  background: linear-gradient(var(--lp-accent), transparent);
  border-radius: 999px;
}

.lp-site-hub__hosting-viz {
  padding-top: 0.85rem;
  border-top: 1px dashed color-mix(in srgb, var(--lp-accent) 35%, var(--lp-border));
}

.lp-site-hub__hosting-viz h4 {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-site-hub__gauges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.lp-site-hub__gauge {
  text-align: center;
}

.lp-site-hub__gauge-ring {
  --ring-circ: 163.36;
  --ring-pct: 0;
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.35rem;
}

.lp-site-hub__gauge-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.lp-site-hub__gauge-track {
  fill: none;
  stroke: #e8e8e8;
  stroke-width: 6;
}

.lp-site-hub__gauge-progress {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: var(--ring-circ);
  stroke-dashoffset: calc(var(--ring-circ) * (1 - var(--ring-pct) / 100));
}

.lp-site-hub__gauge-progress.is-disk { stroke: #2d4a73; }
.lp-site-hub__gauge-progress.is-bw { stroke: #2dd4bf; }
.lp-site-hub__gauge-progress.is-cpu { stroke: #f97316; }

.lp-site-hub__gauge-ring strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.lp-site-hub__gauge > span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-site-hub__host-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.85rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
}

.lp-site-hub__host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-site-hub__host-actions .lp-btn {
  white-space: nowrap;
}

.lp-site-dns-viz {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: #fff;
}

.lp-site-dns-viz h4 {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-site-dns-viz__bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.lp-site-dns-viz__row {
  display: grid;
  grid-template-columns: 3rem 1fr 1.5rem;
  align-items: center;
  gap: 0.5rem;
}

.lp-site-dns-viz__row code {
  font-size: 0.72rem;
  font-weight: 800;
  background: #f3f4f6;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
}

.lp-site-dns-viz__track {
  height: 0.5rem;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}

.lp-site-dns-viz__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2d4a73, #2dd4bf);
  width: 0;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-site-dns-viz__row em {
  font-style: normal;
  font-weight: 900;
  font-size: 0.82rem;
  text-align: end;
}

.lp-svc-detail-chart-wrap--dns {
  height: 8rem;
}

@media (max-width: 760px) {
  .lp-site-hub__bridge {
    grid-template-columns: 1fr;
  }

  .lp-site-hub__connector {
    flex-direction: row;
    padding: 0.25rem 0;
  }

  .lp-site-hub__connector-line {
    width: 2rem;
    height: 2px;
  }

  .lp-site-hub__gauges {
    grid-template-columns: 1fr;
  }

  .lp-site-hub__host-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lp-svc-detail-viz__hero {
    grid-template-columns: 1fr;
  }

  .lp-svc-detail-expiry {
    flex-direction: column;
    text-align: center;
  }

  .lp-svc-detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lp-svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.lp-svc-overview-card {
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 1rem;
  background: #fafafa;
}

.lp-svc-overview-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-svc-auto-renew--block {
  margin-top: 0.85rem;
}

.lp-service-detail__more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.lp-usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.lp-usage-card {
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.lp-usage-card h4 {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
}

.lp-usage-bar__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.lp-usage-bar__track {
  height: 8px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
}

.lp-usage-bar__track--lg {
  height: 12px;
  margin-bottom: 0.5rem;
}

.lp-usage-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #2d4a73, #475569);
  border-radius: 999px;
}

.lp-usage-bar__fill--bw {
  background: linear-gradient(90deg, #b8860b, #2dd4bf);
}

.lp-usage-bar__fill--cpu {
  background: linear-gradient(90deg, #2d4a73, #475569);
}

.lp-usage-updated {
  font-size: 0.8rem;
  color: var(--lp-muted);
  margin: 0 0 1rem;
}

.lp-svc-card__manage {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: #2d4a73;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
}

.lp-svc-card__manage:hover {
  border-color: #2d4a73;
}

.lp-account-overview-services {
  margin: 0 0 1.25rem;
}

.lp-account-overview-services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-account-overview-services__head h4 {
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-account-overview-services__head a {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #0f766e;
}

.lp-svc-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

@media (max-width: 768px) {
  .lp-svc-overview-grid {
    grid-template-columns: 1fr;
  }

  .lp-service-detail__head {
    flex-wrap: wrap;
  }
}

.lp-account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

/* Overview infographics */
.lp-overview-viz {
  margin-bottom: 1.35rem;
}

.lp-overview-viz__charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.lp-overview-card {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(160deg, #fff 0%, color-mix(in srgb, var(--lp-accent) 4%, #fff) 100%);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.05);
}

.lp-overview-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-overview-card__head i {
  color: var(--lp-accent);
  font-size: 0.95rem;
}

.lp-overview-card__head h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.lp-overview-donut {
  --mix-h: 33;
  --mix-d: 66;
  width: 10.5rem;
  height: 10.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: conic-gradient(
    #2d4a73 0 calc(var(--mix-h) * 1%),
    #2dd4bf calc(var(--mix-h) * 1%) calc(var(--mix-d) * 1%),
    var(--lp-chart-vps) calc(var(--mix-d) * 1%) 100%
  );
  position: relative;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--lp-accent) 12%, transparent);
}

.lp-overview-chart {
  position: relative;
  width: 11rem;
  height: 11rem;
  margin: 0 auto 1rem;
}

.lp-overview-chart canvas {
  width: 100% !important;
  height: 100% !important;
}

.lp-overview-chart__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.lp-overview-chart__center strong {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.lp-overview-chart__center span {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-overview-expiry-chart {
  height: clamp(7rem, 12vw, 9.5rem);
  margin-bottom: 1rem;
  padding: 0.35rem 0.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
}

.lp-overview-expiry-chart canvas {
  width: 100% !important;
  height: 100% !important;
}

.lp-overview-donut__hole {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--lp-border);
}

.lp-overview-donut__hole strong {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.lp-overview-donut__hole span {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-overview-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-overview-legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-overview-legend em {
  margin-inline-start: auto;
  font-style: normal;
  font-weight: 900;
  color: var(--lp-text);
}

.lp-overview-legend__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-overview-legend__dot.is-hosting { background: #2d4a73; }
.lp-overview-legend__dot.is-domain { background: #2dd4bf; }
.lp-overview-legend__dot.is-vps { background: var(--lp-chart-vps); }

.lp-overview-empty {
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.88rem;
  padding: 1.5rem 0.5rem;
  margin: 0;
}

.lp-overview-empty i {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.45;
}

.lp-overview-ring {
  position: relative;
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto 1rem;
}

.lp-overview-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.lp-overview-ring__track {
  fill: none;
  stroke: color-mix(in srgb, var(--lp-border) 80%, transparent);
  stroke-width: 10;
}

.lp-overview-ring__progress {
  fill: none;
  stroke: var(--lp-accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--lp-accent) 45%, transparent));
}

.lp-overview-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-overview-ring__label strong {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.lp-overview-ring__label span {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 700;
  margin-top: 0.15rem;
}

.lp-overview-bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-overview-bar {
  display: grid;
  grid-template-columns: 4.5rem 1fr 2.25rem;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-overview-bar__track {
  height: 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lp-border) 70%, transparent);
  overflow: hidden;
}

.lp-overview-bar__fill {
  height: 100%;
  border-radius: inherit;
  width: 0;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-overview-bar__fill.is-hosting { background: linear-gradient(90deg, #2d4a73, #334155); }
.lp-overview-bar__fill.is-domain { background: linear-gradient(90deg, #2dd4bf, #14b8a6); }
.lp-overview-bar__fill.is-vps { background: linear-gradient(90deg, #2d4a73, var(--lp-chart-vps)); }

.lp-overview-bar em {
  font-style: normal;
  font-weight: 900;
  color: var(--lp-text);
  text-align: end;
}

.lp-account-stats--viz {
  gap: 0.75rem;
}

.lp-account-stat--viz {
  position: relative;
  padding: 1.1rem 0.75rem 0.95rem;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-account-stat--viz:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.07);
}

.lp-account-stat--viz::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lp-accent);
  opacity: 1;
}

.lp-account-stat--viz.is-active::before { background: #2d4a73; }
.lp-account-stat--viz.is-active { background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%); }
.lp-account-stat--viz.is-domain::before { background: #2dd4bf; }
.lp-account-stat--viz.is-domain { background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%); }
.lp-account-stat--viz.is-pending::before { background: #f97316; }
.lp-account-stat--viz.is-pending { background: linear-gradient(180deg, #fff 0%, #fff7ed 100%); }

.lp-account-stat__ring {
  --ring-circ: 163.36;
  --ring-pct: 0;
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.65rem;
}

.lp-account-stat__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 4px rgba(30, 58, 95, 0.06));
}

.lp-account-stat__track {
  fill: none;
  stroke: #e2e2e2;
  stroke-width: 6;
}

.lp-account-stat__progress {
  fill: none;
  stroke: var(--lp-accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: var(--ring-circ);
  stroke-dashoffset: calc(var(--ring-circ) * (1 - var(--ring-pct) / 100));
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-account-stat--viz.is-active .lp-account-stat__progress { stroke: #2d4a73; }
.lp-account-stat--viz.is-domain .lp-account-stat__progress { stroke: #14b8a6; }
.lp-account-stat--viz.is-pending .lp-account-stat__progress { stroke: #f97316; }

.lp-account-stat__icon {
  position: absolute;
  inset: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #2d4a73;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(30, 58, 95, 0.06);
}

.lp-account-stat--viz.is-active .lp-account-stat__icon {
  background: #2d4a73;
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.18);
}

.lp-account-stat--viz.is-domain .lp-account-stat__icon {
  background: #2dd4bf;
  color: #2d4a73;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.35);
}

.lp-account-stat--viz.is-pending .lp-account-stat__icon {
  background: #fff;
  color: #f97316;
  box-shadow: inset 0 0 0 2px #fed7aa;
}

.lp-account-stat__pct {
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 900;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: #2d4a73;
  color: #fff;
  line-height: 1.2;
}

.lp-account-stat--viz.is-domain .lp-account-stat__pct {
  background: #2dd4bf;
  color: #2d4a73;
}

.lp-account-stat--viz.is-pending .lp-account-stat__pct {
  background: #f97316;
  color: #fff;
}

.lp-account-stat--viz strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
}

.lp-account-stat--viz span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 700;
  line-height: 1.35;
}

.lp-account-expiry-alerts--viz {
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--lp-accent) 12%, #fff), #fff);
}

.lp-account-expiry-alerts__timeline-title {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--lp-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-account-expiry-alerts__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.lp-account-expiry-alerts__name {
  font-weight: 800;
  font-size: 0.88rem;
}

.lp-account-expiry-alerts__days,
.lp-account-expiry-alerts__countdown {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.06);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lp-account-expiry-alerts__countdown.is-urgent {
  background: color-mix(in srgb, #ef4444 14%, #fff);
  color: #b91c1c;
}

.lp-account-expiry-alerts__countdown.is-expired {
  background: #991b1b;
  color: #fff;
}

.lp-countdown__days {
  font-size: 0.95rem;
  font-weight: 900;
  color: #2d4a73;
}

.lp-countdown__clock {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  letter-spacing: 0.04em;
  color: #2d4a73;
}

.lp-countdown__today {
  font-weight: 800;
  color: #b45309;
}

.lp-account-expiry-alerts__track {
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.08);
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.lp-account-expiry-alerts__fill {
  height: 100%;
  border-radius: inherit;
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-account-expiry-alerts__fill--warn { background: linear-gradient(90deg, #2dd4bf, #fbbf24); }
.lp-account-expiry-alerts__fill--urgent,
.lp-account-expiry-alerts__fill--expired { background: linear-gradient(90deg, #ef4444, #f97316); }

.lp-account-expiry-alerts__item small {
  display: block;
  font-size: 0.75rem;
  color: var(--lp-muted);
  margin-bottom: 0.35rem;
}

.lp-overview-quick-title {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lp-muted);
}

.lp-overview-quick-title i {
  color: var(--lp-accent);
}

.lp-account-actions--viz .lp-account-action {
  background: linear-gradient(165deg, #fff 0%, color-mix(in srgb, var(--lp-accent) 5%, #fff) 100%);
  border-color: color-mix(in srgb, var(--lp-accent) 22%, var(--lp-border));
}

.lp-account-actions--viz .lp-account-action:hover {
  border-color: var(--lp-accent);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--lp-accent) 18%, transparent);
}

@media (max-width: 820px) {
  .lp-overview-viz__charts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lp-account-stats--viz {
    grid-template-columns: 1fr;
  }

  .lp-overview-bar {
    grid-template-columns: 3.5rem 1fr 2rem;
  }
}

/* My Services tab infographics */
.lp-services-viz {
  margin-bottom: 1.25rem;
}

.lp-services-viz__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.lp-services-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.75rem 0.5rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.04);
}

.lp-services-pill i {
  font-size: 0.9rem;
  color: var(--lp-muted);
}

.lp-services-pill strong {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.lp-services-pill span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lp-muted);
  line-height: 1.3;
}

.lp-services-pill.is-active { border-color: color-mix(in srgb, #14b8a6 35%, var(--lp-border)); background: linear-gradient(180deg, #fff, #f0fdfa); }
.lp-services-pill.is-active i { color: #14b8a6; }
.lp-services-pill.is-dns { border-color: color-mix(in srgb, var(--lp-gold) 35%, var(--lp-border)); background: linear-gradient(180deg, #fff, var(--lp-gold-soft)); }
.lp-services-pill.is-dns i { color: var(--lp-gold); }
.lp-services-pill.is-expiring.has-alert { border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border)); background: linear-gradient(180deg, #fff, #f0fdfa); }
.lp-services-pill.is-expiring.has-alert i { color: #14b8a6; }

.lp-services-viz__charts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, 280px);
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.lp-services-chart-card {
  min-height: 100%;
}

.lp-overview-chart--sm {
  width: 9.5rem;
  height: 9.5rem;
}

.lp-services-status-chart {
  height: 9.5rem;
  position: relative;
}

.lp-services-insights {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(165deg, #fff 0%, color-mix(in srgb, var(--lp-accent) 6%, #fff) 100%);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.05);
}

.lp-services-insights h4 {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-services-insights h4 i { color: var(--lp-accent); }

.lp-services-insights__ring {
  --ring-circ: 201.06;
  --ring-pct: 0;
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 0.75rem;
}

.lp-services-insights__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.lp-services-insights__track {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 7;
}

.lp-services-insights__progress {
  fill: none;
  stroke: var(--lp-accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: var(--ring-circ);
  stroke-dashoffset: calc(var(--ring-circ) * (1 - var(--ring-pct) / 100));
}

.lp-services-insights__ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-services-insights__ring-label strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.lp-services-insights__ring-label span {
  font-size: 0.62rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-services-insights__list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lp-services-insights__list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-services-insights__list li i {
  width: 1.25rem;
  text-align: center;
  color: #2d4a73;
}

.lp-services-insights__list em {
  margin-inline-start: auto;
  font-style: normal;
  font-weight: 900;
  color: #2d4a73;
}

.lp-services-insights__next {
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.04);
  margin-bottom: 0.65rem;
}

.lp-services-insights__next small {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.lp-services-insights__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: #2d4a73;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.lp-services-insights__cta:hover {
  background: #222;
  color: var(--lp-accent);
}

.lp-services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.lp-services-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-muted);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.lp-services-filter__btn.is-active {
  border-color: var(--lp-accent);
  background: color-mix(in srgb, var(--lp-accent) 12%, #fff);
  color: #2d4a73;
}

.lp-services-filter__count {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #2d4a73;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-services-filter__btn.is-active .lp-services-filter__count {
  background: #2d4a73;
  color: var(--lp-accent);
}

.lp-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 1rem;
  align-items: start;
}

.lp-services-layout .lp-svc-grid {
  grid-template-columns: 1fr;
}

.lp-services-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 1rem;
}

.lp-services-aside__card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.04);
}

.lp-services-aside__card h5 {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-services-aside__card h5 i { color: var(--lp-accent); }

.lp-overview-expiry-chart--aside {
  height: 7rem;
  margin-bottom: 0;
}

.lp-services-aside__cta {
  text-align: center;
  background: linear-gradient(165deg, #2d4a73, #2d4a73);
  color: #fff;
  border-color: #2d4a73;
}

.lp-services-aside__cta i {
  display: block;
  font-size: 1.5rem;
  color: var(--lp-accent);
  margin-bottom: 0.5rem;
}

.lp-services-aside__cta p {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.lp-services-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
}

.lp-services-empty-hub {
  margin-bottom: 1.25rem;
}

.lp-services-empty-preview {
  position: relative;
  padding: 1rem 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px dashed color-mix(in srgb, var(--lp-accent) 40%, var(--lp-border));
  background: linear-gradient(160deg, #fafafa 0%, #fff 50%, color-mix(in srgb, var(--lp-accent) 5%, #fff) 100%);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.lp-services-empty-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lp-muted);
}

.lp-services-empty-preview__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  opacity: 0.55;
  filter: grayscale(0.15);
}

.lp-services-empty-preview__charts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  opacity: 0.45;
}

.lp-services-empty-preview__chart {
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  min-height: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lp-services-empty-preview__chart em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-services-empty-preview__donut {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: conic-gradient(#2d4a73 0 40%, #2dd4bf 40% 70%, var(--lp-chart-vps) 70% 100%);
  mask: radial-gradient(circle at center, transparent 55%, #000 56%);
  -webkit-mask: radial-gradient(circle at center, transparent 55%, #000 56%);
  animation: lp-empty-spin 8s linear infinite;
}

@keyframes lp-empty-spin {
  to { transform: rotate(360deg); }
}

.lp-services-empty-preview__bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-services-empty-preview__bars span {
  display: block;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #2d4a73, #2dd4bf);
  width: var(--w, 50%);
}

.lp-services-empty-preview__hub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 1rem;
  color: #2d4a73;
}

.lp-services-empty-preview__hub .fa-link {
  font-size: 0.65rem;
  color: var(--lp-accent);
}

.lp-services-empty__body {
  text-align: center;
  padding: 0.5rem 0 1.25rem;
}

.lp-services-empty__icon-ring {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.12);
}

.lp-services-empty__body h4 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 900;
}

.lp-services-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.lp-services-empty__demo {
  border-color: var(--lp-accent);
  color: #2d4a73;
}

.lp-services-empty__demo-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-services-empty-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.lp-services-empty-steps li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  text-align: start;
}

.lp-services-empty-steps__num {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #2d4a73;
  color: #2dd4bf;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-services-empty-steps strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.lp-services-empty-steps p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-services-empty__viz {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  opacity: 0.35;
}

.lp-services-empty__viz i {
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px dashed var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-services-empty__hint {
  margin: 0.5rem 0 1rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

/* VPS tab empty state — #1e3a5f & yellow brand only */
.lp-svc-grid--vps .lp-services-empty-hub {
  grid-column: 1 / -1;
}

.lp-services-empty-hub--vps .lp-services-empty-preview--vps {
  border-color: color-mix(in srgb, #2dd4bf 40%, var(--lp-border));
  background: linear-gradient(160deg, #fafafa 0%, #fff 50%, color-mix(in srgb, #2dd4bf 8%, #fff) 100%);
}

.lp-services-empty-hub--vps .lp-services-pill.is-vps {
  border-color: color-mix(in srgb, #2d4a73 20%, var(--lp-border));
  background: linear-gradient(180deg, #fff, #f3f4f6);
}

.lp-services-empty-hub--vps .lp-services-pill.is-vps i { color: #2d4a73; }
.lp-services-empty-hub--vps .lp-services-pill.is-vps-cpu i,
.lp-services-empty-hub--vps .lp-services-pill.is-vps-ram i,
.lp-services-empty-hub--vps .lp-services-pill.is-vps-ip i { color: #b8860b; }

.lp-services-empty-hub--vps .lp-services-empty__icon-ring {
  background: linear-gradient(135deg, #1e3a5f, #2d4a73);
  color: #2dd4bf;
  box-shadow: 0 12px 32px rgba(45, 212, 191, 0.18);
}

.lp-services-empty-hub--vps .lp-vps-empty-preview__meter span {
  background: linear-gradient(90deg, #2d4a73, #2dd4bf);
}

.lp-vps-empty-preview__meter {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
  margin-bottom: 0.45rem;
}

.lp-vps-empty-preview__meter span {
  display: block;
  height: 100%;
  width: var(--w, 40%);
  border-radius: 999px;
  background: linear-gradient(90deg, #2d4a73, #2dd4bf);
}

.lp-services-empty-hub--vps .lp-vps-empty-preview__nodes {
  color: #b8860b;
}

.lp-services-empty-hub--vps .lp-services-empty-preview__chart {
  border-color: color-mix(in srgb, #2dd4bf 25%, var(--lp-border));
}

.lp-svc-grid--vps .lp-svc-card:only-child {
  max-width: none;
}

.lp-svc-card--vps {
  padding: 1.15rem 1.25rem;
  border-top: 3px solid #2dd4bf;
}

.lp-svc-card--vps .lp-svc-card__icon {
  width: 3rem;
  height: 3rem;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
}

@media (max-width: 980px) {
  .lp-services-viz__charts {
    grid-template-columns: 1fr 1fr;
  }

  .lp-services-insights {
    grid-column: 1 / -1;
  }

  .lp-services-layout {
    grid-template-columns: 1fr;
  }

  .lp-services-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .lp-services-viz__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-services-viz__charts {
    grid-template-columns: 1fr;
  }

  .lp-services-empty-preview__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-services-empty-preview__charts {
    grid-template-columns: 1fr;
  }

  .lp-services-empty-steps {
    grid-template-columns: 1fr;
  }
}

.lp-account-stat {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  text-align: center;
}

.lp-account-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.lp-account-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-account-dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
}

.lp-account-dash-tab {
  flex: 1;
  min-width: fit-content;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--lp-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lp-account-dash-tab.is-active {
  background: #2d4a73;
  color: #fff;
}

.lp-account-dash-panel__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-account-dash-panel__title i {
  color: #b8860b;
}

.lp-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.lp-svc-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-svc-card--pending {
  border-style: dashed;
  background: #fafbfc;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.lp-pending-order-card__foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 0.15rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--lp-border);
  box-sizing: border-box;
}

.lp-pending-order-card__pay,
.lp-pending-order-card__cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.25;
}

.lp-pending-order-card__pay {
  border: none;
  background: #2dd4bf;
  color: #1e3a5f;
}

.lp-pending-order-card__pay:hover {
  background: #14b8a6;
}

.lp-pending-order-card__cancel-form {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-pending-order-card__cancel {
  width: 100%;
  border: 1.5px solid rgba(239, 68, 68, 0.35);
  background: #fff;
  color: #b91c1c;
}

.lp-pending-order-card__cancel:hover {
  background: #fef2f2;
  border-color: rgba(239, 68, 68, 0.55);
}

.lp-pending-order-card__pay span,
.lp-pending-order-card__cancel span {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}

.lp-svc-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
}

.lp-svc-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.lp-svc-card__head strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.35;
}

.lp-svc-card__head small {
  display: block;
  color: var(--lp-muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.lp-svc-card__status {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.lp-svc-card__status--active {
  background: rgba(20, 184, 166, 0.12);
  color: #15803d;
}

.lp-svc-card__status--provisioning {
  background: rgba(20, 184, 166, 0.15);
  color: #a16207;
}

.lp-svc-card__status--suspended,
.lp-svc-card__status--expired,
.lp-svc-card__status--cancelled {
  background: rgba(107, 114, 128, 0.12);
  color: #6b7280;
}

.lp-svc-card__meta {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.lp-svc-card__meta div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.lp-svc-card__meta dt {
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-svc-card__meta dd {
  margin: 0;
  text-align: end;
  font-weight: 700;
}

.lp-svc-card__meta code {
  font-size: 0.78rem;
  background: #f3f4f6;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.lp-svc-card__panel,
.lp-svc-card__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lp-svc-card__panel {
  background: #2d4a73;
  color: #fff;
  margin-top: auto;
  white-space: nowrap;
}

.lp-svc-card__panel:hover {
  background: #2d4a73;
}

.lp-svc-card__pay {
  border: none;
  background: #2dd4bf;
  color: #2d4a73;
  margin-top: auto;
}

.lp-svc-card__pay:hover {
  background: #14b8a6;
}

.lp-order-card__actions,
.lp-account-order__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.lp-order-card__actions .lp-svc-card__pay,
.lp-order-cancel-form,
.lp-account-order__actions .lp-account-order__pay,
.lp-account-order__actions .lp-order-cancel-form {
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 0;
  box-sizing: border-box;
}

.lp-svc-card__cancel,
.lp-account-order__cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(30, 58, 95, 0.12);
  background: #fff;
  color: var(--lp-navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.18s var(--lp-ease), border-color 0.18s var(--lp-ease), color 0.18s var(--lp-ease);
}

.lp-svc-card__cancel:hover,
.lp-account-order__cancel:hover {
  background: #fef2f2;
  border-color: rgba(239, 68, 68, 0.35);
  color: #b91c1c;
}

.lp-order-cancel-form {
  margin: 0;
}

/* Account service cards — enhanced layout */
.lp-svc-grid--account {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.lp-svc-grid--account .lp-svc-card:only-child {
  max-width: none;
}

.lp-svc-card {
  position: relative;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-svc-card:hover {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
  border-color: #d1d5db;
}

.lp-svc-card--hosting {
  border-top: 3px solid #2dd4bf;
}

.lp-svc-grid--domains .lp-svc-card:only-child {
  max-width: none;
}

.lp-svc-card--domain {
  border-top: 3px solid #2d4a73;
  padding: 1.15rem 1.25rem;
}

.lp-svc-card--domain .lp-svc-card__icon {
  width: 3rem;
  height: 3rem;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
}

.lp-svc-card__domain-hero {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #2d4a73;
  word-break: break-all;
}

.lp-svc-card--domain .lp-svc-card__meta--grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.lp-svc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.lp-svc-card__actions > .lp-svc-card__manage,
.lp-svc-card__actions > .lp-svc-card__renew-form,
.lp-svc-card__actions > .lp-svc-card__dns-link,
.lp-svc-card__actions > .lp-svc-card__panel {
  flex: 1 1 120px;
  min-width: 0;
}

.lp-svc-card__renew-form {
  display: flex;
  margin: 0;
}

.lp-svc-card__renew {
  flex: 1;
  min-height: 2.65rem;
}

.lp-svc-card__manage {
  flex: 1;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
}

.lp-svc-card__renew--accent {
  background: #2dd4bf;
  border-color: #2dd4bf;
  color: #2d4a73;
}

.lp-svc-card__renew--accent:hover {
  background: #14b8a6;
  border-color: #14b8a6;
}

.lp-svc-card__dns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
  color: #2d4a73;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.lp-svc-card__dns-link:hover {
  border-color: #2dd4bf;
  background: var(--lp-gold-soft);
  color: #2d4a73;
}

.lp-svc-card--domain .lp-svc-card__dns {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
}

.lp-svc-card--domain .lp-svc-card__dns summary {
  font-size: 0.82rem;
}

.lp-svc-card__icon {
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.2);
}

.lp-svc-card__title-block {
  min-width: 0;
}

.lp-svc-card__domain {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
  word-break: break-all;
}

.lp-svc-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-svc-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-svc-card__chip i {
  font-size: 0.68rem;
  opacity: 0.85;
}

.lp-svc-card__chip--expiry {
  background: #f0fdfa;
  color: #a16207;
}

.lp-svc-card__chip--ssl {
  background: #ecfdf5;
  color: #15803d;
}

.lp-svc-card__usage {
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  background: #fafbfc;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
}

.lp-svc-card__usage .lp-usage-bar__head span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-svc-card__usage .lp-usage-bar__head span i {
  color: #b8860b;
  font-size: 0.75rem;
}

.lp-svc-card__meta--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.85rem;
  padding: 0.65rem 0.75rem;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.lp-svc-card__meta--grid div {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.lp-svc-card__meta--grid dd {
  text-align: start;
}

.lp-svc-card__expiry {
  margin: -1rem -1.1rem 0;
  padding: 0.55rem 1rem;
  border-radius: 13px 13px 0 0;
  font-size: 0.78rem;
}

.lp-svc-card__panel--sso {
  border: none;
  font-family: inherit;
  margin-top: 0;
  min-height: 2.65rem;
}

.lp-svc-card__actions .lp-svc-card__panel {
  flex: 1 1 120px;
}

.lp-svc-card .lp-svc-auto-renew {
  margin-top: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #ececec;
}

@media (max-width: 520px) {
  .lp-svc-card__meta--grid {
    grid-template-columns: 1fr;
  }
}

.lp-account-order__type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-account-order__domain {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-account-order__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  border: none;
  background: linear-gradient(135deg, var(--lp-teal-dark), var(--lp-teal));
  color: var(--lp-navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  min-height: 42px;
}

.lp-account-order__pay:hover {
  background: linear-gradient(135deg, var(--lp-teal), #5eead4);
  color: var(--lp-navy);
}

.lp-account-order__ok {
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803d;
}

.lp-account-dash-cta {
  margin: 1rem 0 0;
  text-align: center;
}

.lp-account-demo-cta {
  margin: 0.75rem 0 0;
  text-align: center;
}

@keyframes lpAccountIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .lp-account-page:not(.lp-account-page--auth) {
    padding: 5rem 0 2.5rem;
  }

  .lp-account-auth__card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .lp-account-dash-hero__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .lp-account-logout-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lp-account-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .lp-account-stats {
    grid-template-columns: 1fr;
  }

  .lp-svc-grid {
    grid-template-columns: 1fr;
  }

  .lp-account-auth__back {
    top: 0.85rem;
    inset-inline-start: 0.85rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
  }

  .lp-account-auth__card {
    padding: 1.35rem 1rem 1rem;
  }

  .lp-account-auth__title {
    font-size: 1.2rem;
  }
}

.lp-hosting-form__account-note {
  font-size: 0.88rem;
  color: var(--lp-muted);
  margin: 0 0 0.75rem;
}

/* ——— Hostinger-style brand (#1e3a5f + yellow) ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body:not(.has-promo-bar) {
  --lp-promo-h: 0px;
}

.lp-promo-bar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 103;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #1e3a5f 0%, #2d4a73 50%, #1e3a5f 100%);
  background-size: 200% 100%;
  animation: lp-promo-shine 8s linear infinite;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 4px 18px rgba(30, 58, 95, 0.35);
}

@keyframes lp-promo-shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.lp-promo-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
}

.lp-promo-bar > span i {
  color: #2dd4bf;
  font-size: 0.9rem;
}

.lp-promo-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: #2dd4bf;
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.22);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp-promo-bar a:hover {
  background: #5eead4;
  color: #1e3a5f;
  transform: translateY(-1px);
}

.lp-badge--green {
  background: var(--lp-green-muted);
  border-color: rgba(45, 212, 191, 0.45);
  color: #0f766e;
}

.lp-badge--green i {
  color: #a16207;
}

/* Hero — white layout (Rwasem) */
.lp-hero--hostinger {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 2.5rem 1.25rem 2.75rem;
  display: block;
  text-align: start;
  background:
    radial-gradient(ellipse 70% 55% at 90% 10%, rgba(45, 212, 191, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 90%, rgba(45, 212, 191, 0.04), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
  color: var(--lp-text);
}

.lp-hero--hostinger .lp-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 30%, rgba(45, 212, 191, 0.08), transparent 28%),
    radial-gradient(circle at 15% 70%, rgba(45, 212, 191, 0.04), transparent 26%);
}

.lp-hero--hostinger .lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

[dir="rtl"] .lp-hero--hostinger .lp-hero__copy {
  text-align: right;
}

[dir="ltr"] .lp-hero--hostinger .lp-hero__copy {
  text-align: left;
}

.lp-hero--hostinger .lp-hero__copy {
  width: 100%;
  max-width: 560px;
}

.lp-hero--hostinger .lp-badge--green {
  background: var(--lp-green-muted);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #0f766e;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.1);
}

.lp-hero--hostinger .lp-badge--green i {
  color: #14b8a6;
}

.lp-hero--hostinger h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1e3a5f;
  text-wrap: balance;
}

.lp-hero--hostinger .lp-hero__lead {
  max-width: 34rem;
  margin: 0 0 1.35rem;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  color: var(--lp-muted);
  text-wrap: balance;
}

.lp-hero--hostinger .lp-domain-search {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
  max-width: 540px;
  margin: 0 0 0.85rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(30, 58, 95, 0.08);
}

.lp-hero--hostinger .lp-domain-search__icon {
  display: flex;
  align-items: center;
  padding-inline-start: 0.8rem;
  color: #2dd4bf;
  font-size: 1rem;
}

.lp-hero--hostinger .lp-domain-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.85rem 0.7rem;
  font: inherit;
  font-size: 1rem;
  outline: none;
  color: #1e3a5f;
}

.lp-hero--hostinger .lp-domain-search input::placeholder {
  color: #94a3b8;
}

.lp-hero--hostinger .lp-domain-search .lp-btn {
  border-radius: 12px;
  flex-shrink: 0;
  padding-inline: 1.25rem;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #ffffff;
  border: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.32);
}

.lp-hero--hostinger .lp-domain-search .lp-btn:hover {
  filter: brightness(1.04);
}

.lp-hero--hostinger .lp-hero-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.lp-hero--hostinger .lp-hero-tld {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lp-hero--hostinger .lp-hero-tld:hover {
  background: var(--lp-green-muted);
  border-color: rgba(45, 212, 191, 0.45);
  color: #0f766e;
}

.lp-hero--hostinger .lp-hero-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.15rem;
}

.lp-hero--hostinger .lp-hero-promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.9rem 0.8rem;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.05);
  transition: transform 0.22s var(--lp-ease), border-color 0.22s, box-shadow 0.22s;
}

.lp-hero--hostinger .lp-hero-promo:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 14px 32px rgba(20, 184, 166, 0.12);
}

.lp-hero--hostinger .lp-hero-promo__icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.15rem;
  border-radius: 12px;
  background: var(--lp-green-muted);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #14b8a6;
  font-size: 0.95rem;
}

.lp-hero--hostinger .lp-hero-promo strong {
  font-size: 0.88rem;
  font-weight: 900;
  color: #1e3a5f;
}

.lp-hero--hostinger .lp-hero-promo span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
}

.lp-hero--hostinger .lp-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.lp-hero--hostinger .lp-hero__trust-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  color: #475569;
}

.lp-hero--hostinger .lp-hero__trust-pills i {
  color: #14b8a6;
  font-size: 0.78rem;
}

.lp-hero--hostinger .lp-hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.lp-hero--hostinger .lp-hero__note i {
  color: #14b8a6;
}

.lp-hero--hostinger .lp-hero__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}

[dir="rtl"] .lp-hero--hostinger .lp-hero__visual {
  justify-self: start;
}

[dir="ltr"] .lp-hero--hostinger .lp-hero__visual {
  justify-self: end;
}

.lp-hero--hostinger .lp-hero__slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.06);
  box-shadow:
    0 28px 60px rgba(30, 58, 95, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.lp-hero--hostinger .lp-hero__slides {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  background: linear-gradient(165deg, #ffffff 0%, #f0fdfa 42%, #ecfdf5 100%);
  overflow: hidden;
}

.lp-hero--hostinger .lp-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero--hostinger .lp-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.lp-hero--hostinger .lp-hero__slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

.lp-hero--hostinger .lp-hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.14) translate3d(5%, 0, 0);
  transform-origin: center center;
  will-change: transform;
}

.lp-hero--hostinger .lp-hero__slide.is-active img {
  animation: lp-hero-pan-rtl 5.5s linear forwards;
}

/* تكبير كافٍ حتى لا يظهر فراغ أثناء الحركة من اليمين لليسار */
@keyframes lp-hero-pan-rtl {
  from {
    transform: scale(1.14) translate3d(5%, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-5%, 0, 0);
  }
}

.lp-hero--hostinger .lp-hero__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 35%,
    rgba(30, 58, 95, 0.28) 100%
  );
}

.lp-hero--hostinger .lp-hero__visual-tlds {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 0.85rem;
  z-index: 3;
}

.lp-hero--hostinger .lp-hero__visual-tlds span {
  padding: 0.32rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 184, 166, 0.28);
  color: #0f766e;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.12);
}

.lp-hero--hostinger .lp-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 4;
}

.lp-hero--hostinger .lp-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
  box-shadow: 0 1px 4px rgba(30, 58, 95, 0.2);
}

.lp-hero--hostinger .lp-hero__dot.is-active {
  width: 24px;
  background: #2dd4bf;
}

@media (prefers-reduced-motion: reduce) {
  .lp-promo-bar {
    animation: none;
    background: #2dd4bf;
  }

  .lp-hero--hostinger .lp-hero__slide,
  .lp-hero--hostinger .lp-hero__slide.is-active,
  .lp-hero--hostinger .lp-hero__slide.is-leaving {
    transition: opacity 0.35s ease;
  }

  .lp-hero--hostinger .lp-hero__slide img,
  .lp-hero--hostinger .lp-hero__slide.is-active img {
    animation: none;
    transform: scale(1.06) translate3d(0, 0, 0);
  }
}

.lp-host-product {
  position: relative;
}

.lp-host-product__badge {
  position: absolute;
  top: -0.55rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--lp-navy);
  color: var(--lp-green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.lp-host-product.is-featured {
  border-color: var(--lp-green-dark);
  box-shadow: 0 12px 36px rgba(45, 212, 191, 0.2);
  padding-top: 1.65rem;
}

.lp-section--dark .lp-step__num {
  background: var(--lp-green-dark);
  color: var(--lp-on-green);
}

.lp-section--dark .lp-stat strong {
  color: var(--lp-green-dark);
}

.lp-hosting-pricing__card.is-featured {
  border-color: var(--lp-green-dark);
  box-shadow: 0 14px 40px rgba(45, 212, 191, 0.22);
}

.lp-hosting-pricing__badge {
  background: var(--lp-navy);
  color: var(--lp-green-dark);
}

.lp-domains-cta__badge {
  background: rgba(45, 212, 191, 0.15);
  color: var(--lp-green);
  border: 1px solid rgba(45, 212, 191, 0.35);
}

.lp-domains-cta__perks i {
  color: var(--lp-green-dark);
}

.lp-domains-cta__tlds span {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.28);
  color: var(--lp-green);
}

@media (max-width: 900px) {
  .lp-hero--hostinger .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-hero--hostinger .lp-hero__copy {
    max-width: none;
    text-align: center !important;
  }

  .lp-hero--hostinger .lp-domain-search,
  .lp-hero--hostinger .lp-hero-tlds,
  .lp-hero--hostinger .lp-hero-promos,
  .lp-hero--hostinger .lp-hero__trust-pills,
  .lp-hero--hostinger .lp-hero__note {
    margin-inline: auto;
  }

  .lp-hero--hostinger .lp-hero-tlds,
  .lp-hero--hostinger .lp-hero__trust-pills {
    justify-content: center;
  }

  .lp-hero--hostinger .lp-hero-promo {
    align-items: center;
    text-align: center;
  }

  .lp-hero--hostinger .lp-hero__visual {
    max-width: 360px;
    justify-self: center !important;
    order: 0;
  }

  .lp-hero--hostinger .lp-hero__slides {
    aspect-ratio: 4 / 4.4;
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .lp-hero--hostinger {
    padding-bottom: 2rem;
  }

  .lp-hero--hostinger .lp-hero-promos {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .lp-hero--hostinger .lp-domain-search {
    flex-direction: column;
  }

  .lp-hero--hostinger .lp-domain-search__icon {
    display: none;
  }

  .lp-hero--hostinger .lp-domain-search .lp-btn {
    width: 100%;
  }

  .lp-hero--hostinger .lp-hero__trust-pills li {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }
}

@media (max-width: 900px) {
  .lp-promo-bar {
    flex-direction: column;
    align-items: center;
    padding: 0.65rem 0.85rem;
    gap: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .lp-promo-bar {
    font-size: 0.78rem;
    padding: 0.6rem 0.65rem;
  }
}

/* ——— Mega menu (Hostinger-style dropdown) ——— */
.lp-mega-overlay {
  position: fixed;
  inset: calc(var(--lp-promo-h, 0px) + 72px) 0 0;
  z-index: 98;
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--lp-ease), visibility 0.22s;
  cursor: pointer;
}

.lp-mega-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

body.lp-mega-open {
  overflow: hidden;
}

.lp-nav-dropdown {
  position: relative;
}

.lp-nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--lp-muted);
  cursor: pointer;
  transition: color 0.2s var(--lp-ease), background 0.2s var(--lp-ease);
}

.lp-nav-dropdown__trigger:hover,
.lp-nav-dropdown.is-open .lp-nav-dropdown__trigger {
  color: var(--lp-text);
  background: var(--lp-green-muted);
}

.lp-nav-dropdown__chevron {
  font-size: 0.62rem;
  transition: transform 0.22s var(--lp-ease);
}

.lp-nav-dropdown.is-open .lp-nav-dropdown__chevron {
  transform: rotate(180deg);
}

.lp-mega-panel__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  background: #fff;
  border-radius: 22px;
  padding: 2rem 2.25rem;
  box-shadow:
    0 24px 60px rgba(30, 58, 95, 0.14),
    0 0 0 1px rgba(30, 58, 95, 0.05);
}

.lp-mega-col__title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-muted);
  letter-spacing: 0.01em;
}

.lp-mega-col__items {
  display: grid;
  gap: 0.15rem;
}

.lp-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  transition: background 0.18s var(--lp-ease);
}

.lp-mega-item:hover,
.lp-mega-item.active {
  background: var(--lp-green-muted);
}

.lp-mega-item__icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--lp-navy);
  color: var(--lp-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.lp-mega-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.lp-mega-item__text strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1.3;
}

.lp-mega-item__text small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--lp-muted);
  line-height: 1.45;
}

@media (min-width: 901px) {
  .lp-mega-panel {
    position: fixed;
    inset-inline: 0;
    top: calc(var(--lp-promo-h, 0px) + 72px);
    z-index: 99;
    padding: 0.65rem 1.25rem 1.35rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity 0.22s var(--lp-ease),
      visibility 0.22s,
      transform 0.22s var(--lp-ease);
  }

  .lp-mega-panel__inner {
    max-width: var(--lp-max);
    margin: 0 auto;
  }

  .lp-nav-dropdown.is-open .lp-mega-panel {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .lp-nav-dropdown.is-open .lp-mega-panel[hidden] {
    display: block;
  }
}

@media (max-width: 900px) {
  .lp-nav-dropdown {
    width: 100%;
  }

  .lp-nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0.65rem;
    font-size: 0.95rem;
    border-bottom: none;
    border-radius: 0;
  }

  .lp-nav-dropdown__trigger:hover,
  .lp-nav-dropdown.is-open .lp-nav-dropdown__trigger {
    background: #fafafa;
  }

  .lp-mega-panel {
    padding: 0 0 0.35rem;
  }

  .lp-mega-panel[hidden] {
    display: none !important;
  }

  .lp-mega-panel__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.25rem 0.35rem 0.5rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .lp-mega-col__title {
    padding-inline: 0.35rem;
    margin-bottom: 0.5rem;
  }

  .lp-mega-item {
    padding: 0.65rem 0.35rem;
  }

  .lp-mega-item__icon {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.85rem;
  }

  .lp-nav__account--inline {
    border-top: 1px solid var(--lp-border);
    margin-top: 0.35rem;
    padding-top: 0.85rem !important;
  }
}

/* ——— Nav account avatar ——— */
.lp-header__tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-inline-start: auto;
}

.lp-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.04);
}

.lp-nav-actions--header .lp-nav__avatar--mobile {
  padding-inline: 0.65rem;
}

.lp-nav-actions--header .lp-nav__avatar-label {
  display: none;
}

.lp-nav-actions:not(.lp-nav-actions--header) .lp-nav__avatar-label {
  display: inline-flex;
}

.lp-nav__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lp-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 11px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--lp-navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.22s var(--lp-ease), color 0.22s var(--lp-ease), transform 0.22s var(--lp-ease);
}

.lp-cart-link i {
  font-size: 1.05rem;
  line-height: 1;
}

.lp-cart-link:hover {
  background: rgba(30, 58, 95, 0.05);
  color: var(--lp-navy);
  transform: translateY(-1px);
}

.lp-cart-link__count {
  position: absolute;
  top: 2px;
  inset-inline-end: 2px;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.18rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lp-teal-dark), var(--lp-teal));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
}

.lp-cart-link__count[hidden] {
  display: none !important;
}

.lp-cart-link--mobile {
  flex-shrink: 0;
}

.lp-cart-link--mobile span:not(.lp-cart-link__count) {
  display: none;
}

.lp-page--home .lp-main {
  padding-top: 0;
}

.lp-page--home .lp-hero--hostinger {
  padding-top: calc(72px + var(--lp-promo-h, 0px) + 2.25rem);
}

.lp-page--home .lp-header,
.lp-page--home .lp-header.scrolled {
  background: #ffffff;
  border-bottom-color: rgba(30, 58, 95, 0.06);
  box-shadow: none;
}

.lp-page--home .lp-header.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.06);
}

@media (min-width: 901px) {
  .lp-page--home .lp-nav {
    background: transparent;
    pointer-events: none;
  }

  .lp-page--home .lp-nav__panel,
  .lp-page--home .lp-nav__body,
  .lp-page--home .lp-nav__tools {
    pointer-events: auto;
  }
}

.lp-page--home .lp-brand {
  color: #1e3a5f;
  position: relative;
  z-index: 103;
}

.lp-page--home .lp-brand img {
  display: block;
  opacity: 1;
  visibility: visible;
}

.lp-page--home .lp-nav__link,
.lp-page--home .lp-nav a:not(.lp-btn):not(.lp-cart-link):not(.lp-nav__avatar):not(.lp-lang-dropdown__option) {
  color: #475569;
}

.lp-page--home .lp-nav__link:hover,
.lp-page--home .lp-nav__link.active,
.lp-page--home .lp-nav a:not(.lp-btn):not(.lp-cart-link):not(.lp-nav__avatar):not(.lp-lang-dropdown__option):hover {
  color: #1e3a5f;
  background: var(--lp-green-muted);
}

.lp-page--home .lp-nav-dropdown__trigger {
  color: #475569;
}

.lp-page--home .lp-nav-dropdown__trigger:hover,
.lp-page--home .lp-nav-dropdown.is-open .lp-nav-dropdown__trigger {
  color: #1e3a5f;
  background: var(--lp-green-muted);
}

.lp-page--home .lp-nav__tools {
  border-inline-start-color: rgba(30, 58, 95, 0.08);
}

.lp-page--home .lp-menu-toggle {
  color: #1e3a5f;
  border-color: rgba(30, 58, 95, 0.1);
  background: #fff;
}

.lp-page--home .lp-lang-dropdown__menu {
  background: #fff;
}

.lp-page--home .lp-lang-dropdown__option {
  color: #1e3a5f !important;
}

.lp-page--home .lp-lang-dropdown__option:hover,
.lp-page--home .lp-lang-dropdown__option.is-active {
  color: #1e3a5f !important;
  background: var(--lp-green-muted);
}

.lp-page--home .lp-lang-dropdown__trigger {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.lp-page--home .lp-cart-link,
.lp-page--home .lp-header__tools .lp-cart-link {
  color: var(--lp-navy);
  background: transparent;
}

.lp-page--home .lp-cart-link i,
.lp-page--home .lp-header__tools .lp-cart-link i {
  color: var(--lp-navy);
}

.lp-page--home .lp-nav__avatar {
  color: var(--lp-navy);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.lp-page--home .lp-nav__avatar:not(.is-logged-in) {
  background: transparent;
  border-color: transparent;
}

.lp-page--home .lp-nav__avatar-label,
.lp-page--home .lp-nav__avatar-icon {
  color: inherit;
}

.lp-page--home .lp-nav__avatar-icon i {
  color: var(--lp-teal);
}

.lp-page--home .lp-nav-actions {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(30, 58, 95, 0.08);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
}

.lp-nav__avatar {
  min-height: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.45rem;
  padding: 0 0.85rem 0 0.7rem;
  background: transparent;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  transition: background 0.22s var(--lp-ease), color 0.22s var(--lp-ease), transform 0.22s var(--lp-ease);
}

.lp-nav__avatar:not(.is-logged-in) {
  background: transparent;
}

.lp-nav__avatar:hover {
  background: var(--lp-navy);
  color: #fff;
  transform: translateY(-1px);
}

.lp-nav__avatar:hover .lp-nav__avatar-icon i,
.lp-nav__avatar:hover .lp-nav__avatar-label {
  color: #fff;
}

.lp-nav__avatar.is-logged-in {
  background: rgba(45, 212, 191, 0.1);
}

.lp-nav__avatar.is-logged-in:hover {
  background: var(--lp-navy);
}

.lp-nav__avatar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--lp-teal);
}

.lp-nav__avatar-icon i {
  color: inherit;
}

.lp-nav__avatar-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-navy);
  line-height: 1;
  letter-spacing: 0.01em;
}

.lp-nav__avatar--desktop {
  display: none;
}

.lp-nav__avatar--mobile {
  flex-shrink: 0;
}

.lp-nav__avatar--drawer {
  display: inline-flex;
}

@media (min-width: 901px) {
  .lp-nav__tools {
    margin-inline-start: 0.35rem;
    padding-inline-start: 0.65rem;
    border-inline-start: 1px solid var(--lp-border);
  }

  .lp-nav__avatar--desktop {
    display: inline-flex;
  }

  .lp-cart-link--desktop {
    display: inline-flex;
  }

  .lp-nav__avatar--mobile {
    display: none;
  }

  .lp-nav__avatar--drawer {
    display: none;
  }

  .lp-header__tools {
    display: none;
  }
}

@media (max-width: 900px) {
  .lp-cart-link--desktop {
    display: none;
  }
}

.lp-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.lp-cart-items {
  display: grid;
  gap: 0.9rem;
}

.lp-cart-item,
.lp-cart-summary {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 14px 34px rgba(30, 58, 95, 0.06);
}

.lp-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 150px;
  border-top: 3px solid rgba(45, 212, 191, 0.9);
}

.lp-cart-item__main {
  min-width: 0;
}

.lp-cart-item__eyebrow,
.lp-cart-summary__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  color: #a16207;
  font-size: 0.72rem;
  font-weight: 900;
}

.lp-cart-item__main h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #111827;
}

.lp-cart-item__main p,
.lp-cart-summary p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lp-cart-item__side {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
  min-width: 180px;
}

.lp-cart-item__side strong,
.lp-cart-summary strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--lp-text);
}

.lp-cart-item__price {
  letter-spacing: -0.02em;
}

.lp-cart-item__actions,
.lp-cart-summary__actions {
  display: grid;
  gap: 0.55rem;
}

.lp-cart-item__actions {
  width: 100%;
}

.lp-cart-summary h3 {
  margin: 0 0 0.55rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #111827;
}

.lp-cart-summary {
  position: sticky;
  top: calc(6.5rem + var(--lp-promo-h, 0px));
  overflow: hidden;
  border-top: 3px solid rgba(45, 212, 191, 0.95);
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fffcf2 100%);
}

.lp-cart-summary::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 70%);
  pointer-events: none;
}

.lp-cart-summary > * {
  position: relative;
  z-index: 1;
}

.lp-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.9rem;
  padding: 0.78rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), background 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
  cursor: pointer;
}

.lp-cart-btn:hover {
  transform: translateY(-1px);
}

.lp-cart-btn--primary {
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  color: #2d4a73;
  box-shadow: 0 14px 30px rgba(45, 212, 191, 0.28);
}

.lp-cart-btn--primary:hover {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #1e3a5f;
}

.lp-cart-btn--soft {
  background: #111827;
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
}

.lp-cart-btn--soft:hover {
  background: #1e3a5f;
}

.lp-cart-btn--ghost {
  background: #fff;
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.18);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.04);
}

.lp-cart-btn--ghost:hover {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.16);
  background: #f9fafb;
}

@media (max-width: 820px) {
  .lp-cart-layout {
    grid-template-columns: 1fr;
  }

  .lp-cart-summary {
    position: static;
  }

  .lp-cart-item {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
  }

  .lp-cart-item__side {
    justify-items: stretch;
    min-width: 0;
  }
}

/* ——— Mega menu pricing plans ——— */
.lp-mega-panel--plans {
  padding-inline: 1rem;
}

.lp-mega-panel__inner--plans {
  display: block;
  padding: 1.65rem 1.75rem 1.35rem;
}

.lp-mega-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
}

.lp-mega-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-mega-plan:hover {
  border-color: var(--lp-green-dark);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.14);
}

.lp-mega-plan.is-featured {
  border-color: var(--lp-green-dark);
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.18);
}

.lp-mega-plan__badge {
  position: absolute;
  top: -0.5rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--lp-navy);
  color: var(--lp-green-dark);
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.lp-mega-plan__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--lp-navy);
  color: var(--lp-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.lp-mega-plan__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
}

.lp-mega-plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.lp-mega-plan__price strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.lp-mega-plan__price small {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-mega-plan__desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
  line-height: 1.45;
  flex: 1;
}

.lp-mega-plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.76rem;
  color: var(--lp-muted);
}

.lp-mega-plan__features li {
  padding: 0.12rem 0;
}

.lp-mega-plan__features i {
  color: #a16207;
  margin-inline-end: 0.25rem;
}

.lp-mega-plans__foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--lp-border);
  text-align: center;
}

.lp-mega-plans__all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--lp-text);
}

.lp-mega-plans__all:hover {
  color: #a16207;
}

@media (max-width: 900px) {
  .lp-mega-panel__inner--plans {
    padding: 0.75rem 0 0.25rem;
    background: transparent;
    box-shadow: none;
  }

  .lp-mega-plans {
    grid-template-columns: 1fr;
  }
}

/* ——— Account sidebar layout ——— */
.lp-body-account-shell .lp-account-page {
  padding: 1.5rem 0 0;
  min-height: 0;
}

.lp-body-account-shell .lp-account-page__inner {
  width: 100%;
  max-width: min(1280px, 100%);
  padding-inline: 1.25rem;
  padding-bottom: 3.5rem;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

.lp-body-account-shell .lp-services-viz,
.lp-body-account-shell .lp-services-layout,
.lp-body-account-shell .lp-account-dashboard,
.lp-body-account-shell .lp-account-main,
.lp-body-account-shell .lp-account-shell,
.lp-body-account-shell .lp-svc-grid,
.lp-body-account-shell #lp-services-grid {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.lp-body-account-shell .lp-svc-grid {
  grid-template-columns: 1fr;
  width: 100%;
}

.lp-body-account-shell .lp-services-filter,
.lp-body-account-shell .lp-services-viz__stats {
  max-width: 100%;
  min-width: 0;
}

.lp-body-account-shell .lp-footer__inner {
  padding-top: 2.75rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}

.lp-body-account-shell .lp-footer__grid {
  gap: 2rem 2.5rem;
  margin-bottom: 2.25rem;
}

.lp-body-account-shell .lp-footer__bottom {
  padding-top: 1.75rem;
}

.lp-account-shell {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  min-height: calc(100vh - var(--lp-promo-h, 0px) - 11rem);
}

.lp-account-sidebar {
  position: sticky;
  top: calc(var(--lp-promo-h, 0px) + 88px);
  max-height: calc(100vh - var(--lp-promo-h, 0px) - 6.5rem);
  background: #fff;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.lp-account-sidebar--hub {
  padding: 0.75rem;
}

.lp-account-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-inline-end: 0.1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 212, 191, 0.5) transparent;
}

.lp-account-sidebar__nav::-webkit-scrollbar {
  width: 4px;
}

.lp-account-sidebar__nav::-webkit-scrollbar-thumb {
  background: rgba(45, 212, 191, 0.5);
  border-radius: 999px;
}

.lp-account-sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.lp-account-sidebar__group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.35rem;
  padding: 0 0.35rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  border-bottom: 1px solid var(--lp-border);
}

.lp-account-sidebar__group i {
  color: #2d4a73;
  font-size: 0.62rem;
}

.lp-account-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.42rem 0.45rem;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--lp-text);
  font: inherit;
  font-size: 0.81rem;
  font-weight: 700;
  text-align: start;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.lp-account-sidebar__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--lp-border);
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-account-sidebar__label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.lp-account-sidebar__link:hover {
  background: #fff;
  border-color: color-mix(in srgb, #2dd4bf 25%, var(--lp-border));
}

.lp-account-sidebar__link:hover .lp-account-sidebar__icon {
  color: #b8860b;
  border-color: color-mix(in srgb, #2dd4bf 35%, var(--lp-border));
}

.lp-account-sidebar__link.is-active {
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
  border-color: color-mix(in srgb, #2dd4bf 40%, var(--lp-border));
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.05);
  border-inline-start: 3px solid #2dd4bf;
  padding-inline-start: calc(0.45rem - 2px);
}

.lp-account-sidebar__link.is-active .lp-account-sidebar__icon {
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  border-color: #2d4a73;
  color: #2dd4bf;
}

.lp-account-sidebar__footer {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid var(--lp-border);
  flex-shrink: 0;
}

.lp-account-sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 11px;
  background: #2d4a73;
  color: #2dd4bf;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.lp-account-sidebar__cta:hover {
  background: #2d4a73;
  color: #fff;
}

.lp-account-sidebar__logout {
  margin: 0;
  padding: 0;
  border: none;
}

.lp-account-sidebar__logout button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.52rem;
  border: 1px dashed var(--lp-border);
  border-radius: 11px;
  background: transparent;
  color: var(--lp-muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lp-account-sidebar__logout button:hover {
  border-color: #d1d5db;
  border-style: solid;
  color: #2d4a73;
  background: #f9fafb;
}

.lp-account-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lp-account-main .lp-account-dash-panel {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.75rem;
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.04);
  flex: 1;
}

.lp-account-main .lp-account-dash-panel.is-active {
  display: flex;
  flex-direction: column;
}

.lp-account-main .lp-account-dash-panel[hidden] {
  display: none !important;
}

.lp-body-account-shell .lp-account-dash-panel__title {
  font-size: 1.12rem;
  margin-bottom: 0.25rem;
}

.lp-body-account-shell .lp-account-dash-intro {
  margin: 0 0 1.35rem;
  text-align: start;
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-body-account-shell .lp-account-main .lp-account-stat {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.22);
}

.lp-body-account-shell .lp-account-main .lp-account-stats {
  margin-bottom: 1.35rem;
}

.lp-body-account-shell .lp-account-main .lp-account-expiry-alerts {
  margin-bottom: 1.35rem;
}

.lp-body-account-shell .lp-account-main .lp-account-actions {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.75rem;
}

.lp-account-settings {
  display: grid;
  gap: 1.25rem;
  max-width: 420px;
}

/* ——— Profile hub ——— */
.lp-profile-hub {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
}

.lp-profile-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-profile-card--wide {
  max-width: 100%;
}

.lp-profile-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-profile-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lp-profile-card__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.lp-profile-card__sub {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.45;
}

.lp-profile-card__body {
  display: grid;
  gap: 0.75rem;
}

.lp-profile-card--avatar .lp-profile-card__head {
  margin-bottom: 0.65rem;
}

.lp-profile-card__avatar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.lp-profile-card__preview {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  border: 3px solid #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #2dd4bf;
  flex-shrink: 0;
}

.lp-profile-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: #f0fdfa;
  color: #a16207;
}

.lp-profile-pill--on {
  background: #ecfdf5;
  color: #15803d;
}

.lp-profile-2fa__setup {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px dashed var(--lp-border);
  border-radius: 12px;
  background: #fafafa;
}

.lp-profile-2fa__qr {
  border-radius: 12px;
  border: 1px solid var(--lp-border);
}

.lp-profile-2fa__secret code {
  font-size: 0.82rem;
  word-break: break-all;
}

.lp-profile-2fa__disable {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--lp-border);
}

.lp-profile-sessions {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.lp-profile-session {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
}

.lp-profile-session.is-current {
  border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
  border-inline-start: 3px solid #2dd4bf;
}

.lp-profile-session__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #f3f4f6;
  color: #2d4a73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.lp-profile-session.is-current .lp-profile-session__icon {
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
}

.lp-profile-session__meta {
  min-width: 0;
}

.lp-profile-session__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.lp-profile-session__head strong {
  font-size: 0.88rem;
}

.lp-profile-session__badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: #2d4a73;
  color: #2dd4bf;
}

.lp-profile-session__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-profile-session__revoke {
  color: #6b7280;
}

.lp-profile-session__revoke:hover {
  color: #b91c1c;
}

@media (max-width: 560px) {
  .lp-profile-session {
    grid-template-columns: auto 1fr;
  }

  .lp-profile-session__revoke {
    grid-column: 2;
    justify-self: start;
  }
}

.lp-account-settings__avatar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.lp-account-settings__preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lp-green-muted);
  border: 2px solid var(--lp-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0f766e;
}

.lp-account-settings__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-account-settings__form {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--lp-border);
}

.lp-account-main .lp-account-actions {
  margin-top: 1rem;
}

.lp-account-main button.lp-account-action {
  font: inherit;
  cursor: pointer;
}

@media (max-width: 960px) {
  .lp-body-account-shell .lp-account-page {
    padding-top: 1rem;
  }

  .lp-body-account-shell .lp-account-page__inner {
    padding-inline: 1rem;
    padding-bottom: 2.5rem;
  }

  .lp-account-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1rem;
  }

  .lp-account-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .lp-account-sidebar__nav {
    display: flex;
    flex-direction: column;
    overflow: visible;
    max-height: none;
  }

  .lp-account-main .lp-account-dash-panel {
    padding: 1.25rem 1rem 1.5rem;
  }

  .lp-body-account-shell .lp-account-main .lp-account-actions {
    padding-top: 1.25rem;
  }
}

@media (max-width: 520px) {
  .lp-body-account-shell .lp-footer__inner {
    padding-top: 2rem;
    padding-bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
  }

  .lp-body-account-shell .lp-footer__nav {
    gap: 1.25rem;
  }
}

/* ——— Phase 1: billing, tickets, auto-renew ——— */
.lp-svc-auto-renew {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--lp-border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-muted);
  cursor: pointer;
}

.lp-svc-auto-renew__input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--lp-green-dark);
}

.lp-account-invoice footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ——— Billing hub ——— */
.lp-billing-hub {
  display: grid;
  gap: 1.25rem;
  max-width: 920px;
}

.lp-billing-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-billing-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: #a16207;
}

.lp-billing-stat i {
  color: #2d4a73;
}

.lp-billing-empty-hub,
.lp-ledger-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-billing-empty-hub__icon,
.lp-ledger-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-billing-empty-hub h4,
.lp-ledger-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-billing-empty-hub p,
.lp-ledger-empty-hub p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  max-width: 28rem;
  margin-inline: auto;
}

.lp-billing-hub__list .lp-account-invoice .lp-account-order__pay {
  background: #2d4a73;
  color: #2dd4bf;
  border: none;
}

.lp-billing-hub__list .lp-account-invoice .lp-account-order__pay:hover {
  background: #2d4a73;
  color: #fff;
}

.lp-ledger-hub {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lp-border);
}

.lp-ledger-hub__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.lp-ledger-hub__sub {
  margin-bottom: 0.85rem;
}

.lp-ledger-hub__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.lp-ledger-stat {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-ledger-stat strong {
  display: block;
  font-size: 1rem;
  color: #2d4a73;
}

.lp-ledger-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-ledger-stat--highlight {
  border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}

.lp-ledger-hub__list {
  display: grid;
  gap: 0.55rem;
}

.lp-ledger-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-ledger-row.is-credit {
  border-color: color-mix(in srgb, #2dd4bf 35%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}

.lp-ledger-row.is-pending {
  opacity: 0.88;
  border-style: dashed;
}

.lp-ledger-row__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lp-ledger-row.is-credit .lp-ledger-row__icon {
  background: #ecfdf5;
  color: #15803d;
}

.lp-ledger-row.is-pending .lp-ledger-row__icon {
  background: #f0fdfa;
  color: #a16207;
}

.lp-ledger-row__body {
  min-width: 0;
}

.lp-ledger-row__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
}

.lp-ledger-row__head strong {
  font-size: 0.88rem;
}

.lp-ledger-row__ref {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lp-muted);
}

.lp-ledger-row__body p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.4;
}

.lp-ledger-row__body time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-ledger-row__amount {
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.95rem;
  color: #2d4a73;
}

.lp-ledger-row.is-credit .lp-ledger-row__amount {
  color: #15803d;
}

@media (max-width: 720px) {
  .lp-ledger-hub__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-ledger-row {
    grid-template-columns: auto 1fr;
  }

  .lp-ledger-row__amount {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.15rem;
  }
}

/* ——— Tickets hub ——— */
.lp-tickets-hub {
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
}

.lp-tickets-hub__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-tickets-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-tickets-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: #a16207;
}

.lp-tickets-stat i {
  color: #2d4a73;
}

.lp-tickets-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-inline-start: auto;
}

.lp-tickets-hub__layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  min-height: 360px;
}

.lp-tickets-hub__sidebar {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-tickets-hub__list {
  display: grid;
  gap: 0.45rem;
  max-height: 420px;
  overflow-y: auto;
}

.lp-tickets-empty-hub {
  text-align: center;
  padding: 1.75rem 1rem;
}

.lp-tickets-empty-hub__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.lp-tickets-empty-hub h4 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
}

.lp-tickets-empty-hub p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--lp-muted);
  line-height: 1.45;
}

.lp-ticket-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
  text-align: start;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.lp-ticket-item:hover,
.lp-ticket-item.is-active {
  border-color: color-mix(in srgb, #2dd4bf 50%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.05);
}

.lp-ticket-item.is-active {
  border-inline-start: 3px solid #2dd4bf;
}

.lp-ticket-item__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lp-ticket-item__body {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.lp-ticket-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.lp-ticket-item__head strong {
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-ticket-item__status {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  white-space: nowrap;
}

.lp-ticket-item__status--open {
  background: #ecfdf5;
  color: #15803d;
}

.lp-ticket-item__status--pending {
  background: #f0fdfa;
  color: #a16207;
}

.lp-ticket-item__status--closed {
  background: #f3f4f6;
  color: #6b7280;
}

.lp-ticket-item__subject {
  font-size: 0.84rem;
  color: var(--lp-text);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-ticket-item small {
  font-size: 0.7rem;
  color: var(--lp-muted);
}

.lp-tickets-hub__panel,
.lp-tickets-hub__welcome {
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-tickets-hub__panel {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.lp-tickets-hub__welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 360px;
}

.lp-tickets-hub__welcome[hidden],
.lp-tickets-hub__panel[hidden] {
  display: none !important;
}

.lp-tickets-welcome__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-tickets-hub__welcome h4 {
  margin: 0 0 0.35rem;
}

.lp-tickets-hub__welcome p {
  margin: 0;
  max-width: 22rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-tickets-thread__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-tickets-thread__number {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #a16207;
  margin-bottom: 0.2rem;
}

.lp-tickets-thread__head h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.lp-tickets-thread__cat {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-tickets-thread__messages {
  display: grid;
  gap: 0.65rem;
  flex: 1;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 0.85rem;
}

.lp-tickets-msg {
  display: flex;
}

.lp-tickets-msg--user {
  justify-content: flex-start;
}

.lp-tickets-msg--admin {
  justify-content: flex-end;
}

.lp-tickets-msg__bubble {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.lp-tickets-msg--user .lp-tickets-msg__bubble {
  background: #f9fafb;
  border: 1px solid var(--lp-border);
}

.lp-tickets-msg--admin .lp-tickets-msg__bubble {
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #fff;
  border-inline-start: 3px solid #2dd4bf;
}

.lp-tickets-msg__bubble time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  opacity: 0.75;
}

.lp-tickets-reply textarea {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  resize: vertical;
  min-height: 4.5rem;
}

.lp-tickets-reply button {
  margin-top: 0.55rem;
}

.lp-tickets-create {
  margin-top: 0.25rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.06);
  display: grid;
  gap: 0.75rem;
}

.lp-tickets-create__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-tickets-create__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-tickets-create__head h4 {
  margin: 0;
}

.lp-account-ticket-create__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .lp-tickets-hub__layout {
    grid-template-columns: 1fr;
  }

  .lp-tickets-hub__welcome {
    min-height: 220px;
  }
}

/* Phase 4: 2FA, notifications, onboarding */
.lp-account-auth__2fa-hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-account-input--otp {
  letter-spacing: 0.35em;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.lp-account-sidebar__badge-count {
  margin-inline-start: auto;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #2dd4bf;
  color: #2d4a73;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-account-notifications__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-notifications-hub {
  max-width: 920px;
}

.lp-notifications-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-notifications-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.lp-notifications-stat i {
  color: #2d4a73;
  font-size: 0.72rem;
}

.lp-notifications-stat--unread {
  background: #f0fdfa;
  color: #a16207;
}

.lp-notifications-stat--unread i {
  color: #2dd4bf;
  font-size: 0.45rem;
}

.lp-notifications-mark-all {
  margin-inline-start: auto;
}

.lp-account-notifications__list {
  display: grid;
  gap: 0.65rem;
}

.lp-notif-item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-notif-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.06);
}

.lp-notif-item.is-unread {
  border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
  border-inline-start: 3px solid #2dd4bf;
}

.lp-notif-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  flex-shrink: 0;
  font-size: 1rem;
}

.lp-notif-item.is-read .lp-notif-item__icon {
  background: #f3f4f6;
  color: #6b7280;
}

.lp-notif-item__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-notif-item__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2dd4bf;
  flex-shrink: 0;
}

.lp-notif-item__body {
  min-width: 0;
  flex: 1;
}

.lp-notif-item__body strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.35;
}

.lp-notif-item__body p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.45;
}

.lp-notif-item__body time {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-notifications-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-notifications-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-notifications-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-notifications-empty-hub p {
  margin: 0 0 1.25rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
  max-width: 28rem;
  margin-inline: auto;
}

.lp-notifications-empty-hub__preview {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  opacity: 0.45;
}

.lp-notifications-empty-hub__preview span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: #f3f4f6;
  color: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.lp-account-2fa__title {
  margin: 0;
  font-size: 1rem;
}

.lp-account-2fa__sub {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-account-2fa__status {
  margin-bottom: 0.75rem;
}

.lp-account-2fa__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--lp-bg);
  color: var(--lp-muted);
}

.lp-account-2fa__pill--on {
  background: color-mix(in srgb, #2dd4bf 15%, var(--lp-bg));
  color: #14b8a6;
}

.lp-account-2fa__setup {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-account-2fa__qr {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
}

.lp-account-2fa__secret code {
  font-size: 0.82rem;
  word-break: break-all;
}

.lp-account-2fa__disable {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--lp-border);
}

.lp-onboarding-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: calc(var(--lp-radius) + 2px);
  border: 1px solid color-mix(in srgb, var(--lp-accent) 40%, var(--lp-border));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--lp-accent) 14%, transparent), transparent 55%),
    var(--lp-surface);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.12);
}

.lp-onboarding-banner__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--lp-accent), color-mix(in srgb, var(--lp-accent) 70%, #1e3a5f));
  color: #2d4a73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lp-accent) 22%, transparent);
}

.lp-onboarding-banner__body {
  flex: 1;
  min-width: 12rem;
}

.lp-onboarding-banner__body strong {
  font-size: 1.02rem;
}

.lp-onboarding-banner__body p {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-onboarding-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lp-onboarding-modal[hidden] {
  display: none !important;
}

.lp-onboarding-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: lp-onboarding-fade-in 0.28s ease;
}

.lp-onboarding-modal__card {
  position: relative;
  width: min(100%, 26.5rem);
  padding: 0;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lp-surface) 96%, #fff) 0%, var(--lp-surface) 100%);
  border: 1px solid color-mix(in srgb, var(--lp-border) 88%, #fff);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 28px 56px rgba(30, 58, 95, 0.28),
    0 8px 20px rgba(30, 58, 95, 0.12);
  overflow: hidden;
  animation: lp-onboarding-slide-up 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-onboarding-modal__glow {
  position: absolute;
  top: -32%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 48%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--lp-accent) 22%, transparent) 0%, transparent 72%);
  pointer-events: none;
  opacity: 0.9;
}

.lp-onboarding-modal__progress {
  position: relative;
  height: 3px;
  background: color-mix(in srgb, var(--lp-border) 70%, transparent);
  z-index: 1;
}

.lp-onboarding-modal__progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--lp-accent), color-mix(in srgb, var(--lp-accent) 72%, #fff));
  border-radius: 0 2px 2px 0;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-onboarding-modal__close {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid color-mix(in srgb, var(--lp-border) 80%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--lp-surface) 88%, var(--lp-bg));
  color: var(--lp-muted);
  cursor: pointer;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.lp-onboarding-modal__close:hover {
  background: var(--lp-surface);
  color: var(--lp-text);
  border-color: color-mix(in srgb, var(--lp-accent) 35%, var(--lp-border));
  transform: scale(1.04);
}

.lp-onboarding-modal__steps {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.65rem 0.25rem;
}

.lp-onboarding-step {
  text-align: center;
  animation: lp-onboarding-step-in 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-onboarding-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  min-height: 1.75rem;
}

.lp-onboarding-step__tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lp-accent) 12%, var(--lp-bg));
  color: color-mix(in srgb, var(--lp-accent) 78%, #1e3a5f);
  border: 1px solid color-mix(in srgb, var(--lp-accent) 28%, transparent);
}

.lp-onboarding-step__step {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--lp-muted);
  letter-spacing: 0.01em;
}

.lp-onboarding-step__icon-wrap {
  position: relative;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.5rem;
}

.lp-onboarding-step__icon-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--lp-accent) 28%, transparent) 0%, transparent 68%);
  animation: lp-onboarding-glow 3s ease-in-out infinite;
}

.lp-onboarding-step__icon {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--lp-bg) 55%, #fff) 100%);
  color: #141414;
  border: 1px solid color-mix(in srgb, var(--lp-border) 75%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow:
    0 10px 24px rgba(30, 58, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lp-onboarding-step[data-step-index="2"] .lp-onboarding-step__icon {
  color: #0f3d2e;
}

.lp-onboarding-step[data-step-index="3"] .lp-onboarding-step__icon {
  color: #3d220f;
}

.lp-onboarding-step__content {
  max-width: 21rem;
  margin: 0 auto;
}

.lp-onboarding-step h3 {
  margin: 0 0 0.85rem;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.lp-onboarding-step__body {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.lp-onboarding-step__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 0.62rem 1rem;
  border-radius: calc(var(--lp-radius) + 2px);
  border: 1px solid color-mix(in srgb, var(--lp-accent) 35%, var(--lp-border));
  background: color-mix(in srgb, var(--lp-accent) 7%, var(--lp-bg));
  color: inherit;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lp-onboarding-step__cta:hover {
  background: color-mix(in srgb, var(--lp-accent) 14%, var(--lp-bg));
  border-color: color-mix(in srgb, var(--lp-accent) 55%, var(--lp-border));
  transform: translateY(-1px);
}

.lp-onboarding-step__cta i {
  color: color-mix(in srgb, var(--lp-accent) 85%, #1e3a5f);
  font-size: 0.8rem;
}

.lp-onboarding-modal__footer {
  position: relative;
  z-index: 2;
  padding-top: 0.35rem;
}

.lp-onboarding-modal__track {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.65rem 0.25rem;
}

.lp-onboarding-track__seg {
  flex: 1;
  height: 0.28rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lp-border) 85%, transparent);
  transition: background 0.3s ease, transform 0.3s ease;
}

.lp-onboarding-track__seg.is-done,
.lp-onboarding-track__seg.is-active {
  background: linear-gradient(90deg, var(--lp-accent), color-mix(in srgb, var(--lp-accent) 75%, #fff));
}

.lp-onboarding-track__seg.is-active {
  transform: scaleY(1.35);
}

.lp-onboarding-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  padding: 0.85rem 1.65rem 1.35rem;
}

.lp-onboarding-modal__next {
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 1.25rem !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  background: #2d4a73 !important;
  color: #fff !important;
  border: 1px solid #2d4a73 !important;
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.16);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-onboarding-modal__next:hover {
  transform: translateY(-1px);
  background: #1e3a5f !important;
  box-shadow: 0 14px 28px rgba(30, 58, 95, 0.22);
}

.lp-onboarding-modal__next.is-finish {
  background: linear-gradient(145deg, var(--lp-accent), color-mix(in srgb, var(--lp-accent) 82%, #1e3a5f)) !important;
  color: #2d4a73 !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--lp-accent) 35%, transparent);
}

.lp-onboarding-modal__skip {
  border: 0;
  background: transparent;
  color: var(--lp-muted);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.45rem;
  min-height: 2.5rem;
  transition: color 0.2s;
}

.lp-onboarding-modal__skip:hover {
  color: var(--lp-text);
}

body.lp-onboarding-open {
  overflow: hidden;
}

@keyframes lp-onboarding-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lp-onboarding-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lp-onboarding-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-onboarding-glow {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06);
  }
}

@media (max-width: 480px) {
  .lp-onboarding-modal {
    padding: 0.85rem;
    align-items: flex-end;
  }

  .lp-onboarding-modal__card {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .lp-onboarding-modal__steps {
    padding: 1.25rem 1.2rem 0.15rem;
  }

  .lp-onboarding-modal__track {
    padding: 0.75rem 1.2rem 0.15rem;
  }

  .lp-onboarding-modal__actions {
    padding: 0.75rem 1.2rem 1.15rem;
  }

  .lp-onboarding-step h3 {
    font-size: 1.22rem;
  }

  .lp-onboarding-step__body {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .lp-onboarding-modal__close {
    width: 2.85rem;
    height: 2.85rem;
  }
}

/* Phase 5: payment methods, backups, status page */
.lp-payment-hub {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
}

.lp-payment-hub__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

.lp-payment-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-payment-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: #a16207;
}

.lp-payment-stat i {
  color: #2d4a73;
}

.lp-payment-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-inline-start: auto;
}

.lp-payment-hub__list {
  display: grid;
  gap: 0.65rem;
}

.lp-payment-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-payment-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.06);
}

.lp-payment-card.is-default {
  border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
  border-inline-start: 3px solid #2dd4bf;
}

.lp-payment-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.lp-payment-card__body {
  min-width: 0;
}

.lp-payment-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.lp-payment-card__body strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.lp-payment-card__meta {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-payment-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #2d4a73;
  color: #2dd4bf;
  font-size: 0.68rem;
  font-weight: 800;
}

.lp-payment-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lp-payment-card__remove {
  color: #6b7280;
}

.lp-payment-card__remove:hover {
  color: #b91c1c;
}

.lp-payment-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-payment-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-payment-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-payment-empty-hub p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  max-width: 26rem;
  margin-inline: auto;
}

@media (max-width: 560px) {
  .lp-payment-card {
    grid-template-columns: auto 1fr;
  }

  .lp-payment-card__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

.lp-backups-list {
  display: grid;
  gap: 0.75rem;
}

.lp-backup-item {
  padding: 1rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-backup-item__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.lp-backup-item__type,
.lp-backup-item__status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--lp-bg);
  color: var(--lp-muted);
}

.lp-backup-item--restoring .lp-backup-item__status {
  background: color-mix(in srgb, var(--lp-accent) 15%, var(--lp-bg));
  color: var(--lp-accent);
}

.lp-backup-item__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
}

.lp-backup-item__meta dt {
  color: var(--lp-muted);
  font-size: 0.72rem;
}

.lp-backup-item__meta dd {
  margin: 0;
  font-weight: 700;
}

.lp-page-hero--status {
  min-height: auto;
  padding-bottom: 2rem;
}

.lp-status-page {
  padding: 0 0 3.5rem;
}

.lp-status-overall {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--lp-radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--lp-border);
}

.lp-status-overall--operational {
  background: color-mix(in srgb, #2dd4bf 10%, var(--lp-surface));
  border-color: color-mix(in srgb, #2dd4bf 35%, var(--lp-border));
}

.lp-status-overall--degraded {
  background: color-mix(in srgb, #f59e0b 10%, var(--lp-surface));
}

.lp-status-overall--outage {
  background: color-mix(in srgb, #ef4444 10%, var(--lp-surface));
}

.lp-status-overall--maintenance {
  background: color-mix(in srgb, var(--lp-gold) 10%, var(--lp-surface));
}

.lp-status-overall__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-bg);
  font-size: 1.2rem;
}

.lp-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.lp-status-components h2,
.lp-status-incidents h2,
.lp-status-recent__title {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

.lp-status-component-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.lp-status-component {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-status-component__pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--lp-bg);
}

.lp-status-component--operational .lp-status-component__pill {
  color: #14b8a6;
}

.lp-status-component--degraded .lp-status-component__pill,
.lp-status-component--outage .lp-status-component__pill {
  color: #dc2626;
}

.lp-status-empty {
  padding: 1rem;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  color: var(--lp-muted);
}

.lp-status-incident-list {
  display: grid;
  gap: 0.65rem;
}

.lp-status-incident {
  padding: 0.9rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-status-incident header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.lp-status-incident time {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: var(--lp-muted);
}

.lp-status-recent {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.lp-status-recent span {
  display: block;
  color: var(--lp-muted);
  font-size: 0.75rem;
}

@media (max-width: 820px) {
  .lp-status-grid {
    grid-template-columns: 1fr;
  }
}

.lp-backup-item__source {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lp-gold) 12%, var(--lp-bg));
  color: var(--lp-gold);
}

.lp-backups-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.lp-stripe-mount {
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px dashed var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-stripe-card-element {
  padding: 0.65rem 0;
}

.lp-stripe-mount__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.75rem;
}

.lp-hpay-save-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--lp-muted);
  cursor: pointer;
}

.lp-hpay-save-card input {
  accent-color: var(--lp-accent);
}

.lp-account-sessions__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.75rem 0 1rem;
}

.lp-account-sessions__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-account-sessions__item.is-current {
  border-color: rgba(45, 212, 191, 0.45);
}

.lp-account-sessions__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.lp-account-sessions__sub {
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-account-sessions__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(45, 212, 191, 0.15);
  color: var(--lp-accent);
}

.lp-account-search {
  position: relative;
  margin-bottom: 1.25rem;
}

.lp-account-search__field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-account-search__field i {
  color: var(--lp-muted);
}

.lp-account-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: none;
  min-width: 0;
}

.lp-account-search__results {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface-elevated, var(--lp-surface));
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.35);
}

.lp-account-search__hit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--lp-border);
}

.lp-account-search__hit:last-child {
  border-bottom: 0;
}

.lp-account-search__hit:hover {
  background: rgba(45, 212, 191, 0.08);
}

.lp-account-search__hit i {
  color: var(--lp-accent);
  margin-top: 0.15rem;
}

.lp-account-search__hit strong {
  display: block;
  font-size: 0.95rem;
}

.lp-account-search__hit small {
  display: block;
  color: var(--lp-muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.lp-account-search__empty {
  padding: 1rem;
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-account-faq__item {
  margin-bottom: 0.5rem;
}

/* ——— Account FAQ hub ——— */
.lp-faq-hub {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
}

.lp-faq-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-faq-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: #a16207;
}

.lp-faq-stat i {
  color: #2d4a73;
}

.lp-faq-hub__list {
  display: grid;
  gap: 0.55rem;
}

.lp-faq-hub__item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-faq-hub__item:hover {
  border-color: #d1d5db;
}

.lp-faq-hub__item[open] {
  border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border));
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
  border-inline-start: 3px solid #2dd4bf;
}

.lp-faq-hub__item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.45;
}

.lp-faq-hub__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-hub__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lp-faq-hub__q {
  min-width: 0;
}

.lp-faq-hub__chev {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.68rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lp-faq-hub__item[open] .lp-faq-hub__chev {
  transform: rotate(180deg);
  background: #2d4a73;
  color: #2dd4bf;
}

.lp-faq-hub__answer {
  padding: 0 1rem 1rem 3.85rem;
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.65;
  border-top: 1px solid var(--lp-border);
  margin-top: 0;
  padding-top: 0.85rem;
}

.lp-faq-empty-hub {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lp-border);
  border-radius: 18px;
}

.lp-faq-empty-hub__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.lp-faq-empty-hub h4 {
  margin: 0 0 0.35rem;
}

.lp-faq-empty-hub p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  max-width: 26rem;
  margin-inline: auto;
}

.lp-faq-hub__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.25rem;
}

@media (max-width: 560px) {
  .lp-faq-hub__answer {
    padding-inline-start: 1rem;
  }
}

.lp-account-faq__more {
  margin-top: 1rem;
}

.lp-account-referrals__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

/* ——— Referrals hub ——— */
.lp-referrals-hub {
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.lp-referrals-hub__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.lp-referrals-stat {
  padding: 0.95rem 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
  text-align: center;
}

.lp-referrals-stat i {
  display: block;
  margin-bottom: 0.35rem;
  color: #2d4a73;
  font-size: 0.9rem;
}

.lp-referrals-stat strong {
  display: block;
  font-size: 1.15rem;
  color: #2d4a73;
}

.lp-referrals-stat span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-referrals-stat--highlight {
  border-color: color-mix(in srgb, #2dd4bf 45%, var(--lp-border));
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}

.lp-referrals-stat--highlight i {
  color: #b8860b;
}

.lp-referrals-hub__share {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.lp-referrals-share-card {
  padding: 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.04);
}

.lp-referrals-share-card__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.lp-referrals-share-card__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.lp-referrals-share-card__label {
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-referrals-share-card__row {
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
}

.lp-referrals-share-card__row .lp-account-input {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
}

.lp-referrals-hub__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lp-referrals-term {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: #a16207;
}

.lp-referrals-term i {
  color: #2d4a73;
}

.lp-referrals-hub__list-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.lp-referrals-hub__list {
  display: grid;
  gap: 0.5rem;
}

.lp-referrals-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
}

.lp-referrals-row__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #f3f4f6;
  color: #2d4a73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.lp-referrals-row__body strong {
  display: block;
  font-size: 0.88rem;
}

.lp-referrals-row__body span {
  display: block;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-referrals-row__badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #15803d;
  white-space: nowrap;
}

.lp-referrals-empty-hub {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px dashed var(--lp-border);
  border-radius: 14px;
  background: #fff;
}

.lp-referrals-empty-hub__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d4a73, #2d4a73);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.lp-referrals-empty-hub p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .lp-referrals-hub__stats,
  .lp-referrals-hub__share {
    grid-template-columns: 1fr;
  }

  .lp-referrals-share-card__row {
    flex-direction: column;
  }
}

.lp-account-ledger__title {
  margin: 1.5rem 0 0.35rem;
  font-size: 1.05rem;
}

.lp-account-ledger__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.lp-account-ledger__summary .lp-account-stat.is-highlight {
  border-color: rgba(45, 212, 191, 0.45);
}

@media (max-width: 720px) {
  .lp-account-ledger__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lp-account-ledger__sub {
  margin-bottom: 0.75rem;
}

.lp-account-ledger__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  margin-bottom: 0.5rem;
}

.lp-account-ledger__row.is-credit {
  border-color: rgba(76, 175, 80, 0.35);
}

.lp-account-ledger__row.is-pending {
  opacity: 0.85;
}

.lp-account-ledger__icon {
  color: var(--lp-accent);
  padding-top: 0.15rem;
}

.lp-account-ledger__body {
  flex: 1;
  min-width: 0;
}

.lp-account-ledger__body strong {
  display: block;
  font-size: 0.92rem;
}

.lp-account-ledger__body span,
.lp-account-ledger__body time {
  display: block;
  font-size: 0.82rem;
  color: var(--lp-muted);
  margin-top: 0.15rem;
}

.lp-account-ledger__amount {
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
}

.lp-account-ledger__row.is-credit .lp-account-ledger__amount {
  color: #15803d;
}

/* ── Domain transfer page ── */
.lp-page-hero--domain-transfer {
  position: relative;
  overflow: hidden;
  background: var(--lp-navy);
  color: #fff;
}

.lp-page-hero--domain-transfer h1,
.lp-page-hero--domain-transfer .lp-page-hero__badge {
  color: #fff;
}

.lp-page-hero--domain-transfer .lp-page-hero__badge {
  background: rgba(45, 212, 191, 0.15);
  border-color: rgba(45, 212, 191, 0.35);
  color: var(--lp-green);
}

.lp-page-hero--domain-transfer p {
  color: rgba(255, 255, 255, 0.72);
}

.lp-page-hero--domain-transfer .lp-breadcrumb,
.lp-page-hero--domain-transfer .lp-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.lp-page-hero--domain-transfer .lp-breadcrumb a:hover {
  color: var(--lp-green);
}

.lp-page-hero--domain-transfer .lp-page-hero__inner {
  position: relative;
  z-index: 1;
}

.lp-page-hero--domain-transfer .lp-page-hero__mesh {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45, 212, 191, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 255, 255, 0.07), transparent 50%);
}

.lp-dt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.lp-dt-steps {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.lp-dt-steps h2 {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
}

.lp-dt-steps__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.lp-dt-steps__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.lp-dt-steps__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--lp-navy);
  color: var(--lp-green);
}

.lp-dt-steps__list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.lp-dt-steps__list p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lp-dt-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-dt-perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--lp-text);
}

.lp-dt-perks i {
  color: #15803d;
}

.lp-dt-form-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
}

.lp-dt-form-card__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.lp-dt-form-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: var(--lp-navy);
  color: var(--lp-green);
  flex-shrink: 0;
}

.lp-dt-form-card__head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.lp-dt-form-card__head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-dt-form {
  display: grid;
  gap: 1rem;
}

.lp-dt-form__hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--lp-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lp-dt-form__quote {
  margin-top: 1rem;
}

.lp-dt-quote {
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.08);
  border-radius: 0.85rem;
  padding: 1rem;
}

.lp-dt-quote__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-dt-quote__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: var(--lp-navy);
  color: var(--lp-green);
}

.lp-dt-quote__head strong {
  display: block;
  font-size: 0.95rem;
}

.lp-dt-quote__head span {
  font-size: 0.8rem;
  color: var(--lp-muted);
}

.lp-dt-quote__price {
  margin-inline-start: auto;
  font-weight: 700;
  color: var(--lp-navy);
  white-space: nowrap;
}

.lp-dt-quote__note {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--lp-muted);
}

.lp-dt-form__register {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
  text-align: center;
}

.lp-dt-form__register a {
  color: var(--lp-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-dt-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.08);
}

.lp-dt-banner__copy {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.lp-dt-banner__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  background: var(--lp-navy);
  color: var(--lp-green);
}

@media (max-width: 900px) {
  .lp-dt-layout {
    grid-template-columns: 1fr;
  }
}

/* Currency switcher */
.lp-currency {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}

.lp-currency__label {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-currency__picker {
  position: relative;
}

.lp-currency__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.85rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(30, 58, 95, 0.1);
  background: #fff;
  color: inherit;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-currency__trigger:hover,
.lp-currency.is-open .lp-currency__trigger {
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.15);
}

.lp-currency__flag {
  width: 1.15rem;
  height: 0.78rem;
  object-fit: cover;
  border-radius: 0.12rem;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 1px 2px rgba(30, 58, 95, 0.06);
  flex-shrink: 0;
}

.lp-currency__code {
  letter-spacing: 0.02em;
}

.lp-currency__sym {
  color: var(--lp-muted);
  font-weight: 600;
  font-size: 0.7rem;
}

.lp-currency__chev {
  font-size: 0.65rem;
  color: var(--lp-muted);
  margin-inline-start: 0.1rem;
  transition: transform 0.15s;
}

.lp-currency.is-open .lp-currency__chev {
  transform: rotate(180deg);
}

.lp-currency__menu {
  position: absolute;
  inset-inline-end: 0;
  inset-inline-start: auto;
  top: calc(100% + 0.25rem);
  z-index: 120;
  width: max-content;
  min-width: 9.25rem;
  max-width: min(11rem, calc(100vw - 1.5rem));
  margin: 0;
  padding: 0.2rem;
  list-style: none;
  border-radius: 0.55rem;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
}

.lp-currency__option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.35rem 0.45rem;
  border: 0;
  border-radius: 0.4rem;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: start;
  cursor: pointer;
  transition: background 0.12s;
}

.lp-currency__option:hover,
.lp-currency__option.is-active {
  background: rgba(45, 212, 191, 0.12);
}

.lp-currency__option .lp-currency__flag {
  width: 1.2rem;
  height: 0.8rem;
}

.lp-currency__option-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
  min-width: 0;
}

.lp-currency__option-text strong {
  font-size: 0.74rem;
  font-weight: 700;
}

.lp-currency__option-text small {
  font-size: 0.66rem;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-currency--nav .lp-currency__label {
  display: none;
}

.lp-currency--nav .lp-currency__trigger {
  background: rgba(30, 58, 95, 0.04);
  border-color: rgba(30, 58, 95, 0.08);
}

.lp-hosting-currency-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  margin: 0 0 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.22);
}

.lp-hosting-currency-bar__note {
  margin: 0;
  font-size: 0.74rem;
  color: var(--lp-muted);
}

.lp-hosting-currency-bar__note i {
  color: var(--lp-green);
  margin-inline-end: 0.35rem;
}

@media (max-width: 640px) {
  .lp-hosting-currency-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding: 0.5rem 0.65rem;
  }

  .lp-currency__menu {
    max-width: calc(100vw - 1.25rem);
  }
}

/* ——— Hostinger-style pricing (Rwasem colors) ——— */
.hst-pricing-head {
  margin-bottom: 1.25rem;
}

.hst-pricing-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.hst-pricing-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.hst-pricing-trust i {
  color: var(--lp-gold);
}

.hst-pricing {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hst-pricing__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
}

.hst-pricing__billing {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.04);
}

.hst-pricing__billing-btn {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--lp-muted);
  transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

.hst-pricing__billing-btn.is-active {
  background: var(--lp-navy);
  color: #fff;
}

.hst-pricing__note {
  margin: 0;
  font-size: 0.76rem;
  color: var(--lp-muted);
}

.hst-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.hst-pricing__grid--grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin-inline: auto;
}

.hst-pricing__grid--grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hst-pricing__grid--grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hst-audience {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.25rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.04);
}

.hst-audience__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--lp-muted);
  transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

.hst-audience__btn i {
  color: var(--lp-gold);
}

.hst-audience__btn.is-active {
  background: var(--lp-navy);
  color: #fff;
}

.hst-audience__btn.is-active i {
  color: var(--lp-green-dark);
}

.hst-audience-panel[hidden] {
  display: none !important;
}

.hst-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 10px 32px rgba(30, 58, 95, 0.05);
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.hst-pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.08);
}

.hst-pricing-card.is-popular {
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 18px 48px rgba(45, 212, 191, 0.18);
  transform: scale(1.02);
  z-index: 1;
}

.hst-pricing-card__discount {
  position: absolute;
  top: 0;
  inset-inline-start: 1rem;
  transform: translateY(-50%);
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  background: var(--lp-green-dark);
  color: var(--lp-on-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hst-pricing-card__popular {
  position: absolute;
  top: 0;
  inset-inline-end: 1rem;
  transform: translateY(-50%);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--lp-navy);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hst-pricing-card__popular--soft {
  background: #eef2ff;
  color: #4338ca;
  text-transform: none;
}

.hst-pricing-card__head h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.hst-pricing-card__head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hst-pricing-card__price {
  margin: 1rem 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lp-border);
}

.hst-pricing-card__was {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}

.hst-pricing-card__now {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.hst-pricing-card__amount {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hst-pricing-card__per {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.hst-pricing-card__renew {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--lp-muted);
  line-height: 1.45;
}

.hst-pricing-card__highlights {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hst-pricing-card__highlights li {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  padding-inline-start: 1.15rem;
  position: relative;
}

.hst-pricing-card__highlights li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-green-dark);
}

.hst-pricing-card__benefits-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-muted);
  margin-bottom: 0.45rem;
}

.hst-pricing-card__benefits ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.hst-pricing-card__benefits li {
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.45;
}

.hst-pricing-card__benefits i {
  color: #14b8a6;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.hst-pricing-card__actions {
  margin-top: auto;
}

.hst-compare {
  margin-top: 0.5rem;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.hst-compare summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fafbfc;
  border-bottom: 1px solid var(--lp-border);
}

.hst-compare summary::-webkit-details-marker {
  display: none;
}

.hst-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hst-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.hst-compare__table th,
.hst-compare__table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
}

.hst-compare__table thead th {
  background: #fff;
  font-weight: 900;
  font-size: 0.88rem;
}

.hst-compare__table tbody th[scope="row"] {
  text-align: start;
  font-weight: 700;
  color: var(--lp-muted);
  background: #fafbfc;
  position: sticky;
  inset-inline-start: 0;
}

.hst-compare__yes {
  color: #14b8a6;
}

.hst-compare__no {
  color: #cbd5e1;
}

@media (max-width: 980px) {
  .hst-pricing__grid,
  .hst-pricing__grid--grid-2,
  .hst-pricing__grid--grid-3,
  .hst-pricing__grid--grid-4 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hst-pricing-card.is-popular {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hst-pricing__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hst-pricing__billing,
  .hst-audience {
    width: 100%;
    justify-content: center;
  }

  .hst-pricing-card__amount {
    font-size: 2rem;
  }
}

/* ——— Hosting page premium layout (v3.57) ——— */
.lp-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
  text-decoration: none;
}

.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(45, 212, 191, 0.55);
  color: #fff;
}

.lp-body--hosting .lp-page-hero--hosting {
  padding: 3.75rem 1.25rem 6.25rem;
  min-height: 560px;
  background:
    radial-gradient(circle at 82% 24%, rgba(45, 212, 191, 0.18), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0b0d12 42%, #090b10 100%);
}

.lp-body--hosting .lp-page-hero--hosting .lp-page-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(45, 212, 191, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 20%, transparent 72%);
}

.lp-body--hosting .lp-page-hero__copy--hosting {
  max-width: 38rem;
}

.lp-body--hosting .lp-page-hero--hosting h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 0.85rem;
  max-width: 10ch;
}

.lp-body--hosting .lp-page-hero--hosting p {
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.78);
}

.lp-body--hosting .lp-hosting-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.lp-body--hosting .lp-hosting-hero__visual {
  min-height: 480px;
}

.lp-body--hosting .lp-hosting-showcase {
  width: min(100%, 620px);
}

.lp-body--hosting .lp-hosting-showcase__board {
  border-radius: 34px;
  box-shadow:
    0 48px 100px rgba(30, 58, 95, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-body--hosting .lp-hosting-showcase__headline strong {
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
}

.lp-body--hosting .lp-hosting-showcase__link {
  padding: 1rem 1.1rem;
  border-radius: 20px;
}

.lp-body--hosting .lp-hosting-showcase__link-copy strong {
  font-size: 1.12rem;
}

.lp-body--hosting .lp-hosting-hero__actions .lp-btn--primary {
  min-width: 220px;
  box-shadow: 0 18px 34px rgba(45, 212, 191, 0.22);
}

.lp-body--hosting .lp-hosting-hero__actions .lp-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lp-hosting-hero__stats {
  list-style: none;
  margin: 1.65rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-hosting-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.lp-hosting-hero__stat i {
  color: var(--lp-green);
}

.lp-hosting-trust--premium {
  background: transparent;
  border: none;
  padding: 0 1.25rem;
  margin-top: -2.75rem;
  position: relative;
  z-index: 3;
}

.lp-hosting-trust--premium .lp-hosting-trust__grid {
  background: #fff;
  border-radius: 22px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 22px 70px rgba(30, 58, 95, 0.11);
  border: 1px solid rgba(30, 58, 95, 0.06);
}

.lp-hosting-trust--premium .lp-hosting-trust__item {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.35rem 0.25rem;
  font-size: 0.82rem;
}

.lp-hosting-trust--premium .lp-hosting-trust__item i {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.18), rgba(45, 212, 191, 0.06));
  color: #9a7209;
  font-size: 1rem;
}

.lp-section--hosting-store {
  background: linear-gradient(180deg, #eef0f3 0%, #f8f9fb 45%, #fff 100%);
  padding-block: 2rem 3rem;
}

.lp-hosting-store-shell {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(30, 58, 95, 0.07);
  box-shadow: 0 28px 90px rgba(30, 58, 95, 0.08);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.lp-hosting-store-shell .hst-pricing-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-hosting-store-shell .hst-pricing-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.lp-hosting-currency-bar {
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fafbfc;
  border: 1px solid var(--lp-border);
}

.lp-hosting-tabs-wrap {
  margin-bottom: 1.75rem;
}

.lp-body--hosting .lp-hosting-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.4rem;
  background: #1e3a5f;
  border-radius: 18px;
  margin-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-body--hosting .lp-hosting-tab {
  justify-content: center;
  border: none;
  border-radius: 13px;
  padding: 0.9rem 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font-size: clamp(0.72rem, 1.8vw, 0.86rem);
  transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-body--hosting .lp-hosting-tab i {
  font-size: 0.95rem;
}

.lp-body--hosting .lp-hosting-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.lp-body--hosting .lp-hosting-tab.is-active {
  background: var(--lp-green-dark);
  color: var(--lp-on-green);
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(45, 212, 191, 0.38);
}

.lp-hosting-store__body {
  animation: lp-hosting-fade 0.35s var(--lp-ease);
}

@keyframes lp-hosting-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-body--hosting .lp-hosting-intro {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin: 0 0 1.35rem;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.1), transparent);
  border: 1px solid rgba(45, 212, 191, 0.18);
}

.lp-body--hosting .hst-audience {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.35rem;
}

.lp-hosting-domain-box {
  background: linear-gradient(180deg, #fafbfc, #fff);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: clamp(1.15rem, 3vw, 1.85rem);
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.04);
}

.lp-hosting-search--premium .lp-hosting-search__label {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.lp-hosting-search--premium .lp-hosting-search__row {
  background: #fff;
  border: 2px solid #1e3a5f;
  border-radius: 16px;
  padding: 0.35rem;
  box-shadow: 0 10px 36px rgba(30, 58, 95, 0.07);
  margin-bottom: 1rem;
}

.lp-hosting-search--premium .lp-hosting-search__input {
  border: none;
  background: transparent;
  padding: 0.95rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.lp-hosting-search--premium .lp-hosting-search__input:focus {
  outline: none;
  box-shadow: none;
}

.lp-hosting-search--premium .lp-hosting-search__row .lp-btn {
  border-radius: 12px;
  padding-inline: 1.35rem;
  white-space: nowrap;
}

.lp-hosting-tlds--premium {
  gap: 0.55rem;
}

.lp-hosting-tlds--premium .lp-hosting-tld {
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-size: 0.86rem;
  transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease), border-color 0.2s var(--lp-ease);
}

.lp-hosting-tlds--premium .lp-hosting-tld:has(input:checked) {
  background: var(--lp-navy);
  color: #fff;
  border-color: var(--lp-navy);
}

.lp-hosting-tlds--premium .lp-hosting-tld:has(input:checked) input {
  accent-color: var(--lp-green);
}

.lp-hosting-results {
  margin-top: 1.25rem;
}

.lp-hosting-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}

.lp-hosting-result {
  border-radius: 16px;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-hosting-result.is-available {
  border-color: rgba(45, 212, 191, 0.45);
}

.lp-hosting-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.07);
}

.lp-hosting-cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 3.75rem) 1.25rem;
  background: var(--lp-navy);
  color: #fff;
}

.lp-hosting-cta-band__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 100% 50%, rgba(45, 212, 191, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255, 255, 255, 0.05), transparent 50%);
}

.lp-hosting-cta-band__grid {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lp-hosting-cta-band__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: var(--lp-green);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.lp-hosting-cta-band__copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
}

.lp-hosting-cta-band__copy p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.lp-hosting-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-hosting-cta-band .lp-btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
}

.lp-hosting-faq-section {
  padding-block: 2.5rem 3rem;
  background: #fff;
}

.lp-hosting-faq-section .lp-section__head h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
}

.lp-body--hosting .lp-hosting-faq__item {
  border-radius: 16px;
  padding: 0;
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

.lp-body--hosting .lp-hosting-faq__item summary {
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  list-style: none;
}

.lp-body--hosting .lp-hosting-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-body--hosting .lp-hosting-faq__item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--lp-muted);
  transition: transform 0.2s var(--lp-ease);
}

.lp-body--hosting .lp-hosting-faq__item[open] {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 10px 32px rgba(45, 212, 191, 0.1);
}

.lp-body--hosting .lp-hosting-faq__item[open] summary {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.08), transparent);
}

.lp-body--hosting .lp-hosting-faq__item[open] summary::after {
  transform: rotate(180deg);
  color: #9a7209;
}

.lp-body--hosting .lp-hosting-faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--lp-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.lp-body--hosting .hst-pricing-card {
  border-radius: 22px;
}

.lp-body--hosting .hst-pricing-card.is-popular {
  transform: none;
}

.lp-body--hosting .hst-pricing-card.is-popular:hover {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .lp-body--hosting .lp-hosting-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hosting-trust--premium .lp-hosting-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hosting-cta-band__grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .lp-body--hosting .lp-page-hero--hosting {
    padding-bottom: 4.5rem;
    min-height: auto;
  }

  .lp-body--hosting .lp-page-hero--hosting h1 {
    font-size: 2.6rem;
    max-width: none;
  }

  .lp-body--hosting .lp-hosting-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-body--hosting .lp-hosting-hero__visual {
    min-height: auto;
  }

  .lp-body--hosting .lp-hosting-showcase__board {
    border-radius: 26px;
  }

  .lp-hosting-trust--premium {
    margin-top: -2rem;
  }

  .lp-hosting-store-shell {
    border-radius: 20px;
    padding: 1rem;
  }

  .lp-hosting-search--premium .lp-hosting-search__row {
    flex-direction: column;
    padding: 0.5rem;
  }

  .lp-hosting-search--premium .lp-hosting-search__row .lp-btn {
    width: 100%;
  }
}

/* Rwasem — account panel hub (agency hosting) */
.lp-overview-hub-card {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(17, 19, 24, 0.02));
}

.lp-overview-hub-card__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lp-overview-hub-card__brand img {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.2);
}

.lp-overview-hub-card__brand strong {
  display: block;
  font-size: 1.05rem;
}

.lp-overview-hub-card__brand p,
.lp-rh-hub__hint {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

.lp-overview-hub-card__domain {
  font-weight: 700;
  color: #b45309;
}

.lp-site-manager__rh-hub {
  border-color: rgba(45, 212, 191, 0.2);
  background: linear-gradient(165deg, rgba(45, 212, 191, 0.06), transparent 45%);
}

.lp-rh-hub__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.lp-rh-hub__brand img {
  border-radius: 14px;
}

.lp-rh-hub__name {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
}

.lp-rh-hub__tag {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.lp-rh-hub__back {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}

.lp-access-card__cta-text small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
}

/* ── Site preloader (Rwasem logo splash) ── */
.lp-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.55s var(--lp-ease, ease), visibility 0.55s;
}

.lp-preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.lp-preloader__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(45, 212, 191, 0.12), transparent 62%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(30, 58, 95, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  pointer-events: none;
}

.lp-preloader__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem;
  text-align: center;
}

.lp-preloader__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(72vw, 240px);
  min-height: 5.5rem;
}

.lp-preloader__ring {
  position: absolute;
  inset: -0.65rem;
  border-radius: 28px;
  border: 2px solid transparent;
  border-top-color: var(--lp-teal, #2dd4bf);
  border-right-color: rgba(45, 212, 191, 0.35);
  animation: lp-preloader-spin 1.1s linear infinite;
}

.lp-preloader__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(68vw, 200px);
  height: auto;
  animation: lp-preloader-pulse 2s ease-in-out infinite;
}

.lp-preloader__text {
  margin: 0;
  font-family: var(--lp-font, 'Tajawal', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(30, 58, 95, 0.62);
  letter-spacing: 0.02em;
}

.lp-preloader__progress {
  width: min(52vw, 160px);
  height: 3px;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.08);
  overflow: hidden;
}

.lp-preloader__progress span {
  display: block;
  height: 100%;
  width: 36%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lp-teal-dark, #14b8a6), var(--lp-teal, #2dd4bf));
  animation: lp-preloader-bar 1.35s ease-in-out infinite;
}

@keyframes lp-preloader-spin {
  to { transform: rotate(360deg); }
}

@keyframes lp-preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.92; }
}

@keyframes lp-preloader-bar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-preloader__ring,
  .lp-preloader__logo,
  .lp-preloader__progress span {
    animation: none;
  }

  .lp-preloader {
    transition: none;
  }
}

/* ── Customer testimonials ── */
.lp-section--testimonials {
  padding-block: 3.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
  border-block: 1px solid var(--lp-border);
}

.lp-testimonials__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: #ccfbf1;
  border: 1px solid rgba(20, 184, 166, 0.35);
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-testimonials__badge i {
  color: #14b8a6;
  font-size: 0.75rem;
}

.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.lp-testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.05);
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s, border-color 0.25s;
}

.lp-testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 18px 40px rgba(45, 212, 191, 0.12);
}

.lp-testimonial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lp-testimonial__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: #14b8a6;
  font-size: 0.82rem;
}

.lp-testimonial__star--off {
  color: #cbd5e1;
}

.lp-testimonial__quote-icon {
  color: rgba(45, 212, 191, 0.35);
  font-size: 1.15rem;
}

.lp-testimonial__text {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

.lp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(30, 58, 95, 0.06);
}

.lp-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-testimonial__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a73 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(30, 58, 95, 0.18);
}

.lp-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.lp-testimonial__meta strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--lp-navy);
}

.lp-testimonial__meta span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}

@media (max-width: 960px) {
  .lp-testimonials {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .lp-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Hero brand focus (marketing + software) ── */
.lp-hero--brand .lp-hero__actions--brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.lp-hero--brand .lp-hero__actions--brand .lp-btn {
  min-width: min(100%, 12.5rem);
}

.lp-hero-promos--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}

@media (max-width: 640px) {
  .lp-hero-promos--duo {
    grid-template-columns: 1fr;
    max-width: 20rem;
    margin-inline: auto;
  }

  .lp-hero--brand .lp-hero__actions--brand {
    flex-direction: column;
  }

  .lp-hero--brand .lp-hero__actions--brand .lp-btn {
    width: 100%;
  }
}

/* ── Domain page ── */
.lp-body--domain {
  background: #f1f5f9;
}

.lp-page-hero--domain {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 1.25rem 5.5rem;
  background: linear-gradient(155deg, #1e3a5f 0%, #2d4a73 52%, #1e3a5f 100%);
  color: #fff;
}

.lp-page-hero--domain h1,
.lp-page-hero--domain .lp-page-hero__badge {
  color: #fff;
}

.lp-page-hero--domain .lp-page-hero__badge {
  background: rgba(45, 212, 191, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.38);
  color: #5eead4;
  font-weight: 800;
}

.lp-page-hero--domain p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 34rem;
}

.lp-page-hero--domain .lp-breadcrumb,
.lp-page-hero--domain .lp-breadcrumb a {
  color: rgba(255, 255, 255, 0.58);
}

.lp-page-hero--domain .lp-breadcrumb a:hover {
  color: #5eead4;
}

.lp-page-hero--domain .lp-page-hero__inner {
  position: relative;
  z-index: 2;
}

.lp-page-hero--domain .lp-page-hero__mesh {
  background:
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(45, 212, 191, 0.22), transparent 58%),
    radial-gradient(ellipse 45% 38% at 8% 88%, rgba(255, 255, 255, 0.06), transparent 52%);
}

.lp-page-hero__glow--domain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 120%, rgba(45, 212, 191, 0.12), transparent 55%);
}

.lp-domain-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.lp-domain-hero__copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.lp-domain-hero__perks {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-domain-hero__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.lp-domain-hero__perks i {
  color: #5eead4;
  font-size: 0.78rem;
}

.lp-domain-hero__visual {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.lp-domain-hero__globe-ring {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, rgba(45, 212, 191, 0.04) 68%);
  border: 1px solid rgba(45, 212, 191, 0.28);
  box-shadow: 0 0 60px rgba(45, 212, 191, 0.18);
  animation: lp-domain-globe-pulse 4s ease-in-out infinite;
}

.lp-domain-hero__globe {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 2.6rem;
  color: #5eead4;
}

.lp-domain-hero__tld {
  position: absolute;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #ccfbf1;
  font-size: 0.78rem;
  font-weight: 800;
  animation: lp-domain-tld-float 5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.35s);
}

.lp-domain-hero__tld:nth-child(2) { top: 12%; inset-inline-end: 8%; }
.lp-domain-hero__tld:nth-child(3) { top: 38%; inset-inline-start: 0; }
.lp-domain-hero__tld:nth-child(4) { bottom: 18%; inset-inline-end: 12%; }
.lp-domain-hero__tld:nth-child(5) { top: 8%; inset-inline-start: 18%; }
.lp-domain-hero__tld:nth-child(6) { bottom: 8%; inset-inline-start: 22%; }

@keyframes lp-domain-globe-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(45, 212, 191, 0.18); }
  50% { transform: scale(1.04); box-shadow: 0 0 80px rgba(45, 212, 191, 0.28); }
}

@keyframes lp-domain-tld-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.lp-domain-search-wrap {
  position: relative;
  z-index: 5;
  margin-top: -3.25rem;
  padding: 0 1.25rem 2.5rem;
}

.lp-domain-search-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 26px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow:
    0 28px 70px rgba(30, 58, 95, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.lp-domain-search-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a5f 0%, #2dd4bf 50%, #1e3a5f 100%);
}

.lp-domain-search-card__head {
  margin-bottom: 1.15rem;
}

.lp-domain-search-card__title {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.lp-domain-search-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ccfbf1, #f0fdfa);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #0d9488;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-domain-search-card__title h2 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--lp-navy);
}

.lp-domain-search-card__title p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
}

.lp-dt-banner--domain {
  margin-bottom: 1.35rem;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(240, 253, 250, 0.95) 100%);
  border-color: rgba(45, 212, 191, 0.32);
}

.lp-dt-banner--domain .lp-dt-banner__btn {
  background: #fff;
  border-color: rgba(30, 58, 95, 0.12);
  font-weight: 800;
}

.lp-body--domain .lp-hosting-search--page .lp-hosting-search__label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--lp-navy);
  margin-bottom: 0.55rem;
}

.lp-body--domain .lp-hosting-search--page .lp-hosting-search__row {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  background: #fff;
  border: 2px solid #1e3a5f;
  border-radius: 18px;
  padding: 0.4rem;
  box-shadow: 0 16px 44px rgba(30, 58, 95, 0.1);
  margin-bottom: 0.85rem;
}

.lp-domain-search__globe {
  display: grid;
  place-items: center;
  width: 2.75rem;
  padding-inline-start: 0.65rem;
  color: #14b8a6;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.lp-body--domain .lp-hosting-search--page .lp-hosting-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 1rem 0.5rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--lp-navy);
}

.lp-body--domain .lp-hosting-search--page .lp-hosting-search__input::placeholder {
  color: #94a3b8;
  font-weight: 600;
}

.lp-body--domain .lp-domain-search__submit {
  border-radius: 14px !important;
  padding-inline: 1.5rem !important;
  min-height: 3.15rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.18);
}

.lp-domain-search__tld-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.02em;
}

.lp-hosting-tlds--domain {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-hosting-tlds--domain .lp-hosting-tld {
  cursor: pointer;
  user-select: none;
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  border: 1.5px solid rgba(30, 58, 95, 0.1);
  background: #f8fafc;
  color: var(--lp-navy);
  transition: all 0.2s var(--lp-ease);
}

.lp-hosting-tlds--domain .lp-hosting-tld:has(input:checked) {
  background: linear-gradient(135deg, #1e3a5f, #2d4a73);
  color: #fff;
  border-color: #1e3a5f;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
}

.lp-hosting-tlds--domain .lp-hosting-tld input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-hosting-hint--domain {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px dashed rgba(30, 58, 95, 0.12);
  font-size: 0.82rem;
  color: #64748b;
  text-align: center;
}

.lp-hosting-results--domain h3 {
  font-size: 1.05rem;
  color: var(--lp-navy);
  margin-bottom: 0.85rem;
}

.lp-domain-hosting-section {
  padding-top: 0;
  background: transparent;
}

.lp-domain-hosting-section__kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: #ccfbf1;
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 800;
}

.lp-domain-hosting-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.lp-domain-hosting-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s, border-color 0.25s;
}

.lp-domain-hosting-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 20px 48px rgba(45, 212, 191, 0.14);
}

.lp-domain-hosting-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1e3a5f, #2d4a73);
  color: #5eead4;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.lp-domain-hosting-card strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--lp-navy);
}

.lp-domain-hosting-card span {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.lp-domain-hosting-card em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
  color: #14b8a6;
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .lp-domain-hero {
    grid-template-columns: 1fr;
  }

  .lp-domain-hero__visual {
    min-height: 160px;
    order: -1;
  }

  .lp-domain-hero__globe-ring {
    width: 130px;
    height: 130px;
  }

  .lp-domain-hero__globe {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }

  .lp-page-hero--domain {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 640px) {
  .lp-body--domain .lp-hosting-search--page .lp-hosting-search__row {
    flex-direction: column;
    padding: 0.65rem;
  }

  .lp-domain-search__globe {
    display: none;
  }

  .lp-body--domain .lp-domain-search__submit {
    width: 100%;
  }

  .lp-domain-hosting-cards {
    grid-template-columns: 1fr;
  }

  .lp-dt-banner--domain {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-dt-banner--domain .lp-dt-banner__btn {
    justify-content: center;
  }
}

.lp-hosting-tab--link {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .lp-domain-hero__globe-ring,
  .lp-domain-hero__tld {
    animation: none;
  }
}

/* ── Mobile header & account polish ── */
@media (max-width: 900px) {
  .lp-header__inner {
    padding: 0.5rem 0.85rem;
    gap: 0.65rem;
    min-height: 56px;
  }

  .lp-brand {
    flex: 1;
    min-width: 0;
  }

  .lp-brand--logo img {
    height: 40px;
    max-width: min(132px, 38vw);
    background: transparent;
    mix-blend-mode: multiply;
  }

  .lp-header__tools {
    gap: 0;
    flex-shrink: 0;
  }

  .lp-nav-actions--header {
    gap: 0.12rem;
    padding: 0.18rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.07);
  }

  .lp-nav-actions--header .lp-cart-link,
  .lp-nav-actions--header .lp-nav__avatar--mobile,
  .lp-nav-actions--header .lp-menu-toggle {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 10px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .lp-nav-actions--header .lp-nav__avatar--mobile {
    padding: 0;
    gap: 0;
  }

  .lp-nav-actions--header .lp-nav__avatar--mobile.is-logged-in {
    background: rgba(30, 58, 95, 0.06);
  }

  .lp-nav-actions--header .lp-nav__avatar--mobile .lp-nav__avatar-icon,
  .lp-nav-actions--header .lp-nav__avatar--mobile .lp-nav__avatar-icon i {
    color: #1e3a5f;
  }

  .lp-nav-actions--header .lp-nav__avatar--mobile.is-logged-in .lp-nav__avatar-icon i {
    color: #14b8a6;
  }

  .lp-nav-actions--header .lp-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1e3a5f;
  }

  .lp-nav-actions--header .lp-menu-toggle:hover,
  .lp-nav-actions--header .lp-cart-link:hover,
  .lp-nav-actions--header .lp-nav__avatar--mobile:hover {
    background: rgba(30, 58, 95, 0.06);
    transform: none;
  }

  .lp-nav-actions--header .lp-cart-link__count {
    top: 4px;
    inset-inline-end: 4px;
    min-width: 0.95rem;
    height: 0.95rem;
    font-size: 0.55rem;
    box-shadow: 0 0 0 2px #fff;
  }

  .lp-page--home .lp-nav-actions--header {
    background: #fff;
    border-color: rgba(30, 58, 95, 0.08);
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.07);
  }

  .lp-page--home .lp-nav-actions--header .lp-menu-toggle {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .lp-main {
    padding-top: calc(56px + var(--lp-promo-h, 0px));
  }

  .lp-page--home .lp-hero--hostinger {
    padding-top: calc(56px + var(--lp-promo-h, 0px) + 1.75rem);
  }
}

@media (max-width: 960px) {
  .lp-account-sidebar {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }

  .lp-account-sidebar__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    gap: 0.55rem;
    padding: 0 0.1rem 0.45rem;
  }

  .lp-account-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .lp-account-sidebar__section {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.45rem;
    padding: 0;
    background: transparent;
    border: none;
    flex-shrink: 0;
  }

  .lp-account-sidebar__section + .lp-account-sidebar__section {
    padding-inline-start: 0.55rem;
    border-inline-start: 1px solid var(--lp-border);
  }

  .lp-account-sidebar__group {
    display: none;
  }

  .lp-account-sidebar__link {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: auto;
    min-width: 4.75rem;
    max-width: 5.5rem;
    padding: 0.55rem 0.45rem;
    text-align: center;
    scroll-snap-align: start;
    border-inline-start: none !important;
    padding-inline-start: 0.45rem !important;
  }

  .lp-account-sidebar__icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.78rem;
  }

  .lp-account-sidebar__label {
    font-size: 0.68rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .lp-account-sidebar__link.is-active {
    border-inline-start: none;
    box-shadow: 0 2px 10px rgba(45, 212, 191, 0.14);
  }

  .lp-account-sidebar__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 0.35rem;
  }

  .lp-account-sidebar__cta,
  .lp-account-sidebar__logout button {
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.65rem 0.5rem;
  }

  .lp-account-main .lp-account-dash-panel__title {
    font-size: 1.15rem;
  }

  .lp-account-search__field {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .lp-header__inner {
    padding-inline: 0.75rem;
  }

  .lp-brand--logo img {
    height: 36px;
    max-width: min(118px, 36vw);
  }

  .lp-nav-actions--header .lp-cart-link,
  .lp-nav-actions--header .lp-nav__avatar--mobile,
  .lp-nav-actions--header .lp-menu-toggle {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .lp-account-sidebar__link {
    min-width: 4.25rem;
    padding: 0.5rem 0.35rem;
  }

  .lp-account-sidebar__label {
    font-size: 0.64rem;
  }
}

/* ── Account page — mobile shell ── */
.lp-body-account-shell {
  overflow-x: hidden;
}

.lp-body-account-shell.has-promo-bar {
  --lp-promo-h: 0px;
}

.lp-body-account-shell .lp-promo-bar {
  display: none;
}

@media (max-width: 960px) {
  .lp-body-account-shell {
    overflow-x: clip;
  }

  .lp-body-account-shell .lp-account-page {
    padding: 0.35rem 0 1rem;
    min-height: auto;
  }

  .lp-body-account-shell .lp-account-page__inner {
    padding-inline: 0.85rem;
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }

  .lp-body-account-shell .lp-account-dash-intro,
  .lp-body-account-shell .lp-account-dash-panel__title {
    display: none;
  }

  /* Sidebar — sticky + larger touch targets */
  .lp-body-account-shell .lp-account-sidebar {
    position: sticky;
    top: calc(56px + env(safe-area-inset-top, 0px));
    z-index: 45;
    margin: 0;
    padding: 0.35rem 0 0.5rem;
    background: linear-gradient(180deg, #f2f3f6 88%, rgba(242, 243, 246, 0));
  }

  .lp-body-account-shell .lp-account-sidebar__nav {
    gap: 0.5rem;
    padding-bottom: 0.35rem;
  }

  .lp-body-account-shell .lp-account-sidebar__link {
    min-width: 5.35rem;
    min-height: 4.35rem;
    padding: 0.6rem 0.5rem;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.04);
  }

  .lp-body-account-shell .lp-account-sidebar__icon {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.85rem;
  }

  .lp-body-account-shell .lp-account-sidebar__label {
    font-size: 0.72rem;
    font-weight: 800;
  }

  .lp-body-account-shell .lp-account-sidebar__link.is-active {
    background: linear-gradient(145deg, #1e3a5f 0%, #2d4a73 100%);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.18);
  }

  .lp-body-account-shell .lp-account-sidebar__link.is-active .lp-account-sidebar__label {
    color: #fff;
  }

  .lp-body-account-shell .lp-account-sidebar__link.is-active .lp-account-sidebar__icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #5eead4;
  }

  .lp-body-account-shell .lp-account-sidebar__footer {
    margin-top: 0.45rem;
    padding-top: 0.1rem;
  }

  .lp-body-account-shell .lp-account-sidebar__cta,
  .lp-body-account-shell .lp-account-sidebar__logout button {
    min-height: 44px;
    font-size: 0.82rem;
  }

  /* Search */
  .lp-body-account-shell .lp-account-search {
    margin-bottom: 0.65rem;
  }

  .lp-body-account-shell .lp-account-search__field {
    min-height: 46px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.04);
  }

  .lp-body-account-shell .lp-account-search__input {
    font-size: 0.92rem;
  }

  /* Main panel — lighter shell */
  .lp-body-account-shell .lp-account-main .lp-account-dash-panel {
    padding: 0.85rem 0 0.5rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  /* Hide heavy charts / side panels on phone */
  .lp-body-account-shell .lp-overview-viz__charts,
  .lp-body-account-shell .lp-services-viz__charts,
  .lp-body-account-shell .lp-services-aside,
  .lp-body-account-shell .lp-overview-expiry-chart,
  .lp-body-account-shell .lp-overview-expiry-chart--aside {
    display: none !important;
  }

  .lp-body-account-shell .lp-overview-viz {
    margin-bottom: 0.85rem;
  }

  .lp-body-account-shell .lp-account-stats,
  .lp-body-account-shell .lp-account-stats--viz {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }

  .lp-body-account-shell .lp-account-stat {
    padding: 0.75rem 0.65rem;
  }

  /* Services tab — filters first, compact stats row */
  .lp-body-account-shell .lp-services-viz {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .lp-body-account-shell .lp-services-filter {
    order: -2;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0 0 0.35rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lp-body-account-shell .lp-services-filter::-webkit-scrollbar {
    display: none;
  }

  .lp-body-account-shell .lp-services-filter__btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
  }

  .lp-body-account-shell .lp-services-viz__stats {
    order: -1;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    grid-template-columns: none;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lp-body-account-shell .lp-services-viz__stats::-webkit-scrollbar {
    display: none;
  }

  .lp-body-account-shell .lp-services-pill {
    flex: 0 0 auto;
    min-width: 6.75rem;
    padding: 0.55rem 0.65rem;
  }

  .lp-body-account-shell .lp-services-pill strong {
    font-size: 1.15rem;
  }

  .lp-body-account-shell .lp-services-pill span {
    font-size: 0.64rem;
  }

  .lp-body-account-shell .lp-services-layout {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  /* Service cards — fit screen width */
  .lp-body-account-shell .lp-account-dashboard,
  .lp-body-account-shell .lp-account-shell,
  .lp-body-account-shell .lp-account-main,
  .lp-body-account-shell .lp-svc-grid,
  .lp-body-account-shell .lp-services-layout {
    min-width: 0;
    max-width: 100%;
  }

  .lp-body-account-shell .lp-svc-grid {
    gap: 0.65rem;
    overflow-x: clip;
  }

  .lp-body-account-shell .lp-svc-grid--account .lp-svc-card:only-child {
    max-width: 100%;
  }

  .lp-body-account-shell .lp-svc-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.85rem;
    gap: 0.65rem;
    border-radius: 14px;
    overflow: hidden;
  }

  .lp-body-account-shell .lp-svc-card__head {
    min-width: 0;
  }

  .lp-body-account-shell .lp-svc-card__head strong,
  .lp-body-account-shell .lp-svc-card__head small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .lp-body-account-shell .lp-svc-card--pending .lp-svc-card__head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon status";
    gap: 0.35rem 0.65rem;
    align-items: start;
  }

  .lp-body-account-shell .lp-svc-card--pending .lp-svc-card__icon {
    grid-area: icon;
    grid-row: auto;
    width: 2.35rem;
    height: 2.35rem;
  }

  .lp-body-account-shell .lp-svc-card--pending .lp-svc-card__head > div {
    grid-area: title;
    min-width: 0;
  }

  .lp-body-account-shell .lp-svc-card--pending .lp-svc-card__status {
    grid-area: status;
    grid-column: auto;
    justify-self: start;
  }

  .lp-body-account-shell .lp-svc-card:not(.lp-svc-card--pending) .lp-svc-card__head {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.35rem 0.65rem;
    align-items: center;
  }

  .lp-body-account-shell .lp-svc-card:not(.lp-svc-card--pending) .lp-svc-card__icon {
    grid-row: 1 / span 2;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.92rem;
  }

  .lp-body-account-shell .lp-svc-card:not(.lp-svc-card--pending) .lp-svc-card__status {
    grid-column: 2;
    justify-self: start;
    font-size: 0.72rem;
  }

  .lp-body-account-shell .lp-svc-card__meta {
    gap: 0.25rem;
    min-width: 0;
  }

  .lp-body-account-shell .lp-svc-card__meta div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.78rem;
  }

  .lp-body-account-shell .lp-pending-order-card__foot {
    border-top-color: rgba(30, 58, 95, 0.08);
  }

  .lp-body-account-shell .lp-svc-card__meta dd {
    overflow-wrap: anywhere;
  }

  /* Pay + Cancel — stacked full width */
  .lp-body-account-shell .lp-order-card__actions,
  .lp-body-account-shell .lp-account-order__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.5rem;
    padding-top: 0.65rem;
  }

  .lp-body-account-shell .lp-order-card__actions .lp-svc-card__pay,
  .lp-body-account-shell .lp-order-card__actions .lp-order-cancel-form,
  .lp-body-account-shell .lp-account-order__actions .lp-account-order__pay,
  .lp-body-account-shell .lp-account-order__actions .lp-order-cancel-form {
    flex: none;
    width: 100%;
    min-width: 0;
    margin-top: 0;
  }

  .lp-body-account-shell .lp-svc-card__pay,
  .lp-body-account-shell .lp-account-order__pay {
    min-height: 46px;
    font-size: 0.88rem;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .lp-body-account-shell .lp-svc-card__cancel,
  .lp-body-account-shell .lp-account-order__cancel {
    min-height: 46px;
    font-size: 0.88rem;
    border-radius: 12px;
    border-color: rgba(239, 68, 68, 0.35);
    color: #b91c1c;
    box-sizing: border-box;
  }

  .lp-body-account-shell .lp-svc-card__panel {
    min-height: 46px;
    font-size: 0.88rem;
    border-radius: 12px;
  }

  /* Quick actions — horizontal scroll */
  .lp-body-account-shell .lp-account-actions--viz {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.55rem;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .lp-body-account-shell .lp-account-actions--viz::-webkit-scrollbar {
    display: none;
  }

  .lp-body-account-shell .lp-account-actions--viz .lp-account-action {
    flex: 0 0 auto;
    min-width: 8.5rem;
    min-height: 44px;
  }

  .lp-body-account-shell .lp-onboarding-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }

  .lp-body-account-shell .lp-onboarding-banner .lp-btn {
    width: 100%;
  }

  /* FABs — corner, smaller, no content overlap */
  .lp-body-account-shell .lp-fabs {
    inset-inline-start: auto;
    inset-inline-end: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
  }

  .lp-body-account-shell .lp-fab {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.2);
  }

  /* Compact footer */
  .lp-body-account-shell .lp-footer__grid,
  .lp-body-account-shell .lp-footer__connect {
    display: none;
  }

  .lp-body-account-shell .lp-footer__inner {
    padding: 1rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .lp-body-account-shell .lp-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding-top: 0;
    border-top: none;
    text-align: center;
  }

  .lp-body-account-shell .lp-footer__bottom-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
  }
}

@media (max-width: 480px) {
  .lp-body-account-shell .lp-account-page__inner {
    padding-inline: 0.75rem;
  }

  .lp-body-account-shell .lp-account-sidebar {
    margin-inline: 0;
    padding-inline: 0;
  }

  .lp-body-account-shell .lp-account-sidebar__link {
    min-width: 4.85rem;
    min-height: 4rem;
  }

  .lp-body-account-shell .lp-account-sidebar__label {
    font-size: 0.66rem;
  }

  .lp-body-account-shell .lp-account-stats,
  .lp-body-account-shell .lp-account-stats--viz {
    grid-template-columns: 1fr 1fr;
  }

  .lp-body-account-shell .lp-account-sidebar__footer {
    grid-template-columns: 1fr;
  }

  .lp-body-account-shell .lp-svc-card__head strong {
    font-size: 0.86rem;
  }
}
