/**
 * Nexzoneo Card - Landing Page
 * Modern dark theme with glassmorphism, scroll animations, and 3D card visual
 *
 * @version 2.0.0
 */

/* ========================================
   Scroll Reveal Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .lp-hero__card { animation: none !important; }
  .lp-hero__card-shine { animation: none !important; }
  .lp-hero__glow { animation: none !important; }
}

/* ========================================
   Landing Page Wrapper
   ======================================== */
.landing-page {
  font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  background: #000;
  color: #f1f5f9;
}

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

/* ========================================
   Navbar
   ======================================== */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s, box-shadow 0.3s;
}

.lp-nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.lp-nav__logo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
}

.lp-nav__logo img {
  height: 52px;
  border-radius: 8px;
}

.lp-nav__logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

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

.lp-nav__link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

.lp-nav__link:hover {
  color: #f1f5f9;
}

.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.lp-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
  color: #fff;
}

/* Mobile hamburger */
.lp-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========================================
   Hero Section
   ======================================== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    #000;
}

.lp-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: heroGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0ea5e9;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.lp-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  color: #f1f5f9;
  letter-spacing: -0.035em;
}

.lp-hero__title span {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 2.5rem;
  max-width: 500px;
}

.lp-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.lp-btn--primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
  color: #fff;
}

.lp-btn--outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ========================================
   3D Floating Card Visual
   ======================================== */
.lp-hero__card-wrapper {
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__card {
  width: 380px;
  height: 238px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0f172a 0%, #1a2744 40%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(14, 165, 233, 0.06);
  position: relative;
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
  transform: rotateY(-8deg) rotateX(5deg);
}

@keyframes cardFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-14px); }
}

.lp-hero__card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.02) 55%,
    transparent 60%
  );
  animation: cardShine 5s ease-in-out infinite;
}

@keyframes cardShine {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

.lp-hero__card-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-hero__card-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-hero__card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 5px;
  position: relative;
}

.lp-hero__card-chip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.lp-hero__card-number {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.25em;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.lp-hero__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.lp-hero__card-holder {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.lp-hero__card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-mc {
  display: flex;
  position: relative;
  width: 48px;
  height: 30px;
}

.lp-mc__circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 0;
}

.lp-mc__circle--red {
  background: #eb001b;
  left: 0;
  opacity: 0.9;
}

.lp-mc__circle--orange {
  background: #f79e1b;
  left: 18px;
  opacity: 0.85;
}

/* ========================================
   Stats Bar
   ======================================== */
.lp-stats {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: -3rem auto 0;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

.lp-stat__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.2;
}

.lp-stat__value span {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-stat__label {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* ========================================
   Section Layout
   ======================================== */
.lp-section {
  padding: 6rem 2rem;
  position: relative;
}

.lp-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-section__tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.lp-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

.lp-section__subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   Features Grid
   ======================================== */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lp-feature:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lp-feature__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.lp-feature__icon--blue    { background: rgba(14, 165, 233, 0.1);  color: #0ea5e9; }
.lp-feature__icon--violet  { background: rgba(139, 92, 246, 0.1);  color: #8b5cf6; }
.lp-feature__icon--emerald { background: rgba(16, 185, 129, 0.1);  color: #10b981; }
.lp-feature__icon--amber   { background: rgba(245, 158, 11, 0.1);  color: #f59e0b; }
.lp-feature__icon--rose    { background: rgba(244, 63, 94, 0.1);   color: #f43f5e; }
.lp-feature__icon--cyan    { background: rgba(6, 182, 212, 0.1);   color: #06b6d4; }

.lp-feature__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 0.6rem;
}

.lp-feature__desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ========================================
   Steps / How it Works
   ======================================== */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.lp-steps__line {
  position: absolute;
  top: 44px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(14, 165, 233, 0.25),
    rgba(139, 92, 246, 0.25),
    rgba(16, 185, 129, 0.25));
  z-index: 0;
}

.lp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-step__number {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0ea5e9;
  transition: all 0.35s ease;
}

.lp-step:hover .lp-step__number {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.25);
  transform: scale(1.08);
}

.lp-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 0.4rem;
}

.lp-step__desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   Pricing Card
   ======================================== */
.lp-pricing-wrapper {
  display: flex;
  justify-content: center;
}

.lp-pricing {
  max-width: 440px;
  width: 100%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6, #8b5cf6);
}

.lp-pricing__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
}

.lp-pricing__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
  margin: 0 0 0.25rem;
}

.lp-pricing__price-note {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 2rem;
}

.lp-pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
}

.lp-pricing__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  font-size: 0.9rem;
}

.lp-pricing__list li svg {
  flex-shrink: 0;
  color: #10b981;
  width: 18px;
  height: 18px;
}

/* ========================================
   Contact / Final CTA
   ======================================== */
.lp-cta {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.lp-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.lp-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lp-cta__desc {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.lp-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-cta__contact {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #475569;
}

.lp-cta__contact a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.2s;
}

.lp-cta__contact a:hover {
  color: #38bdf8;
}

/* ========================================
   Footer
   ======================================== */
.lp-footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.lp-footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 0.75rem;
}

.lp-footer__brand-desc {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
  margin: 0;
}

.lp-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.25rem;
}

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

.lp-footer__links li {
  margin-bottom: 0.6rem;
}

.lp-footer__links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.lp-footer__links a:hover {
  color: #0ea5e9;
}

.lp-footer__bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  color: #475569;
  font-size: 0.8rem;
}

/* ========================================
   Contact Form
   ======================================== */
.lp-form {
  text-align: left;
  margin-top: 2rem;
}

.lp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lp-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.25rem;
}

.lp-form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.lp-form__req {
  color: #0ea5e9;
}

.lp-form__input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: #f1f5f9;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.lp-form__input::placeholder {
  color: #475569;
}

.lp-form__input:focus {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}

.lp-form__textarea {
  resize: vertical;
  min-height: 70px;
}

.lp-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.9rem;
  font-size: 1rem;
}

.lp-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.lp-form__result {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.lp-form__result--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.lp-form__result--error {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: #f43f5e;
}

@media (max-width: 640px) {
  .lp-form__row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Session Expired Toast
   ======================================== */
.lp-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-size: 0.9rem;
  animation: lpToastIn 0.5s ease-out, lpToastOut 0.5s ease-in 4.5s forwards;
}

@keyframes lpToastIn {
  from { transform: translateX(400px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes lpToastOut {
  to { transform: translateX(400px); opacity: 0; }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lp-hero__desc { margin-left: auto; margin-right: auto; }
  .lp-hero__actions { justify-content: center; }
  .lp-hero__card-wrapper { order: -1; margin-bottom: 1rem; }
  .lp-hero__card { width: 320px; height: 200px; }
  .lp-hero__card-number { font-size: 1rem; }
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-steps__line { display: none; }
  .lp-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .lp-nav { padding: 0.75rem 1rem; }
  .lp-nav__links { display: none; }
  .lp-nav__toggle { display: block; }
  .lp-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .lp-hero { padding: 6rem 1.25rem 3rem; min-height: auto; }
  .lp-hero__card { width: 280px; height: 175px; }
  .lp-hero__card-content { padding: 1.25rem; }
  .lp-hero__card-number { font-size: 0.9rem; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-stats {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
    margin: -2rem 0.75rem 0;
  }
  .lp-stat__value { font-size: 1.4rem; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .lp-section { padding: 4rem 1.25rem; }
  .lp-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-pricing { padding: 2.5rem 1.5rem; }
  .lp-btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}

@media (max-width: 380px) {
  .lp-hero__card { width: 260px; height: 163px; }
  .lp-stats { grid-template-columns: 1fr; }
}
