/* Landing page — scoped under .landing so app themes stay intact */

.landing {
  --lp-navy: #0a194e;
  --lp-navy-2: #122a6e;
  --lp-blue: #1d8fff;
  --lp-blue-hover: #0b7ae6;
  --lp-green: #1db954;
  --lp-orange: #f0a202;
  --lp-text: #142033;
  --lp-muted: #5b6b7f;
  --lp-line: #e6ebf2;
  --lp-soft: #f5f7fb;
  --lp-radius: 12px;
  --lp-header-h: 72px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--lp-text);
  background: #fff;
  overflow-x: hidden;
}

.landing h1,
.landing h2,
.landing h3,
.landing .lp-display {
  font-family: "Outfit", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

#landing-screen.active {
  display: block;
  padding-top: var(--banner-h);
}

/* —— Header —— */
.lp-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 80;
  height: var(--lp-header-h);
  background: rgba(10, 25, 78, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lp-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lp-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.lp-logo-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lp-mark-img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(10, 25, 78, 0.45);
}

.lp-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--lp-navy);
  color: #f4f7fc;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(10, 25, 78, 0.45);
}

.lp-logo-name {
  color: #f4f7fc;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-logo-tag {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  line-height: 1.2;
  max-width: 180px;
  margin-left: 2.45rem;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.lp-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.lp-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 9px;
  padding: 0.65rem 1.15rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.lp-btn:active { transform: translateY(1px); }

.lp-btn-primary {
  background: var(--lp-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29, 143, 255, 0.35);
}

.lp-btn-primary:hover { background: var(--lp-blue-hover); }

.lp-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.lp-btn-lg { padding: 0.85rem 1.45rem; font-size: 0.95rem; }

.lp-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.lp-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.landing.nav-open .lp-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.landing.nav-open .lp-burger span:nth-child(2) { opacity: 0; }
.landing.nav-open .lp-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* —— Hero —— */
.lp-hero {
  position: relative;
  min-height: calc(100vh - var(--banner-h) - var(--lp-header-h));
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--lp-navy);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 20, 40, 0.92) 0%, rgba(7, 20, 40, 0.72) 48%, rgba(7, 20, 40, 0.45) 100%),
    url("assets/landing/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
  animation: lp-hero- ken 18s ease-in-out infinite alternate;
}

@keyframes lp-hero-ken {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 5rem;
  width: 100%;
}

.lp-eyebrow {
  display: inline-block;
  color: var(--lp-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: lp-fade-up 0.7s ease 0.15s forwards;
}

.lp-hero-brand {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: lp-fade-up 0.75s ease 0.28s forwards;
}

.lp-hero-brand span {
  color: var(--lp-green);
}

.lp-hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  animation: lp-fade-up 0.75s ease 0.4s forwards;
}

.lp-hero-copy {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: lp-fade-up 0.75s ease 0.52s forwards;
}

.lp-hero-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
  max-width: 28rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: lp-fade-up 0.75s ease 0.62s forwards;
}

.lp-hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.lp-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(29, 143, 255, 0.9);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-check svg { width: 12px; height: 12px; }

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: lp-fade-up 0.75s ease 0.72s forwards;
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections common —— */
.lp-section {
  padding: 5rem 1.25rem;
}

.lp-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.lp-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.lp-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 0.65rem;
}

.lp-section-head p {
  color: var(--lp-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.lp-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Services strip —— */
.lp-services {
  background: var(--lp-navy-2);
  color: #fff;
  padding: 2.75rem 1.25rem;
}

.lp-services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lp-service {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.lp-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lp-service h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
}

.lp-service p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

/* —— About —— */
.lp-about {
  background: #fff;
}

.lp-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-about-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--lp-soft);
  box-shadow: 0 20px 50px rgba(7, 20, 40, 0.12);
}

.lp-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-about-copy > p {
  color: var(--lp-muted);
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.lp-tabs {
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid var(--lp-line);
  margin: 1.75rem 0 1.15rem;
}

.lp-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.55rem 0;
  margin-bottom: -1px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lp-muted);
  cursor: pointer;
}

.lp-tab.active {
  color: var(--lp-blue);
  border-bottom-color: var(--lp-blue);
}

.lp-tab-panel {
  display: none;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lp-tab-panel.active { display: block; }

/* —— Why Us —— */
.lp-why {
  background: var(--lp-soft);
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.lp-feature {
  text-align: center;
  padding: 1.25rem 1rem;
}

.lp-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: rgba(29, 143, 255, 0.1);
  color: var(--lp-blue);
  display: grid;
  place-items: center;
}

.lp-feature-icon svg { width: 26px; height: 26px; }

.lp-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-feature p {
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* —— Rates —— */
.lp-rates { background: #fff; }

.lp-rate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.lp-rate-card {
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 20, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-rate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7, 20, 40, 0.1);
}

.lp-rate-top {
  padding: 1.75rem 1.5rem 1.35rem;
}

.lp-rate-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.lp-rate-title h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.lp-pill {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--lp-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-rate-value {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.lp-rate-value strong {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--lp-navy-2);
  line-height: 1;
}

.lp-rate-value span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-rate-bottom {
  background: linear-gradient(180deg, #eef6ff 0%, #e3f0ff 100%);
  padding: 1.35rem 1.5rem 1.5rem;
}

.lp-rate-bottom ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.lp-rate-bottom li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--lp-text);
}

.lp-rate-bottom li svg {
  width: 16px;
  height: 16px;
  color: var(--lp-blue);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lp-rate-bottom .lp-btn {
  width: 100%;
  border: 1.5px solid rgba(7, 20, 40, 0.2);
  background: transparent;
  color: var(--lp-navy-2);
}

.lp-rate-bottom .lp-btn:hover {
  background: var(--lp-navy-2);
  color: #fff;
  border-color: var(--lp-navy-2);
}

/* —— Journey —— */
.lp-journey {
  background: linear-gradient(165deg, #1a6fd4 0%, #0c2f6b 55%, #071428 100%);
  color: #fff;
}

.lp-journey .lp-section-head h2,
.lp-journey .lp-section-head p { color: #fff; }

.lp-journey .lp-section-head p { color: rgba(255, 255, 255, 0.78); }

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.lp-stat {
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 1.75rem 1rem;
  text-align: center;
}

.lp-stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.85rem;
  opacity: 0.9;
}

.lp-stat strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.lp-stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* —— Process —— */
.lp-process { background: var(--lp-soft); }

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lp-step {
  text-align: center;
  padding: 0.5rem;
}

.lp-step-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: var(--lp-blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(29, 143, 255, 0.35);
}

.lp-step-icon svg { width: 28px; height: 28px; }

.lp-step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.lp-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-step p {
  color: var(--lp-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* —— Testimonials —— */
.lp-testimonials { background: #fff; }

.lp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-quote {
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(7, 20, 40, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-quote p {
  color: var(--lp-muted);
  line-height: 1.65;
  font-size: 0.95rem;
  flex: 1;
}

.lp-quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-quote-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-quote-author strong {
  display: block;
  font-size: 0.95rem;
}

.lp-quote-author span {
  font-size: 0.82rem;
  color: var(--lp-muted);
}

/* —— History —— */
.lp-history { background: #fff; }

.lp-history-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.lp-history-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.15rem;
}

.lp-history-copy p {
  color: var(--lp-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.lp-history-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 50px rgba(7, 20, 40, 0.12);
}

.lp-history-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Open account / FAQs / Support —— */
.lp-cta-band {
  background: var(--lp-navy);
  color: #fff;
  padding: 4rem 1.25rem;
  text-align: center;
}

.lp-cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.65rem;
}

.lp-cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.lp-faqs {
  background: var(--lp-soft);
}

.lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-faq details {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

.lp-faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
  content: "+";
  color: var(--lp-blue);
  font-weight: 800;
}

.lp-faq details[open] summary::after { content: "–"; }

.lp-faq details p {
  margin-top: 0.75rem;
  color: var(--lp-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* —— Footer —— */
.lp-footer {
  background: #050d1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1.25rem 2rem;
}

.lp-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.lp-footer .lp-logo-name { color: #f4f7fc; }
.lp-footer .lp-logo-tag { color: rgba(255, 255, 255, 0.45); margin-left: 0; }

.lp-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.lp-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.lp-footer a:hover { color: #fff; }

.lp-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* —— Floating widgets —— */
.lp-lang {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-text);
  box-shadow: 0 6px 18px rgba(7, 20, 40, 0.12);
  pointer-events: none;
}

.lp-lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(180deg, #b22234 0 14%, #fff 14% 28%, #b22234 28% 42%, #fff 42% 56%, #b22234 56% 70%, #fff 70% 84%, #b22234 84% 100%);
  position: relative;
  overflow: hidden;
}

.lp-lang-flag::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 40%;
  height: 54%;
  background: #3c3b6e;
}

.lp-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--lp-navy);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(7, 20, 40, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}

.lp-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lp-top:hover { background: var(--lp-blue); }

/* Login back link */
.auth-back-landing {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.auth-back-landing:hover { color: var(--primary); }

/* —— Responsive —— */
@media (max-width: 980px) {
  .lp-header-inner { flex-wrap: wrap; position: relative; }

  .lp-nav,
  .lp-header-actions { display: none; }

  .lp-burger { display: flex; }

  .landing.nav-open .lp-nav,
  .landing.nav-open .lp-header-actions {
    display: flex;
    width: 100%;
  }

  .landing.nav-open .lp-nav {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landing.nav-open .lp-header-actions {
    order: 4;
    flex-direction: column;
    padding: 0.75rem 0 1rem;
  }

  .landing.nav-open .lp-header {
    height: auto;
  }

  .landing.nav-open .lp-header-actions .lp-btn { width: 100%; }

  .lp-services-grid,
  .lp-features,
  .lp-stats,
  .lp-steps,
  .lp-quotes,
  .lp-about-grid,
  .lp-history-grid,
  .lp-rate-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .lp-hero-checks { grid-template-columns: 1fr; }
  .lp-services-grid,
  .lp-features,
  .lp-stats,
  .lp-steps,
  .lp-quotes,
  .lp-about-grid,
  .lp-history-grid,
  .lp-rate-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-logo-tag { display: none; }
  .lp-section { padding: 3.5rem 1.1rem; }
  .lp-hero-inner { padding: 3rem 1.1rem 4rem; }
  .lp-history-media { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-bg { animation: none; }
  .lp-eyebrow,
  .lp-hero-brand,
  .lp-hero h1,
  .lp-hero-copy,
  .lp-hero-checks,
  .lp-hero-ctas {
    opacity: 1;
    animation: none;
  }
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
