/* ============================================
   LiveEventsPro Fresh Design System
   100% Original CSS — No Webflow/EventLive code
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2332;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- COLORS ---- */
:root {
  --red: #cc2936;
  --red-dark: #a81e2b;
  --red-light: #fef2f3;
  --navy: #0d1b2a;
  --navy-light: #1b3a5c;
  --slate: #3d4f63;
  --gray: #6b7c8f;
  --light: #f5f7fa;
  --lighter: #fafbfd;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---- CONTAINER ---- */
.lep-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.lep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.lep-btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.lep-btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,41,54,0.3);
}
.lep-btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.lep-btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.lep-btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.lep-btn--white:hover {
  background: var(--lighter);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}
.lep-btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============ NAVIGATION ============ */
.lep-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.lep-nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.lep-nav__brand { flex-shrink: 0; }
.lep-nav__logo { height: 75px; width: auto; max-width: 220px; object-fit: contain; }
.lep-nav__links {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: nowrap;
  align-items: center;
}
.lep-nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
  white-space: nowrap;
}
.lep-nav__link:hover { color: var(--red); }
.lep-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lep-nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.lep-nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.lep-nav__link--mobile-only { display: none; }

/* ============ HERO ============ */
.lep-hero {
  position: relative;
  padding: 140px 24px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lep-hero__background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #f0f4fa 0%, #fff 70%);
  z-index: -1;
}
.lep-hero__background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(204,41,54,0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(13,27,42,0.03) 0%, transparent 50%);
}
.lep-hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.lep-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.lep-accent { color: var(--red); }
.lep-hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 20px;
  font-weight: 400;
}
.lep-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ============ ORBIT ANIMATION ============ */
.orbit-hero {
  position: relative;
  width: 660px;
  height: 660px;
  margin: 50px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(13,27,42,0.06);
  pointer-events: none;
}
.orbit-ring--outer { width: 100%; height: 100%; top: 0; left: 0; }
.orbit-ring--inner {
  width: 60%;
  height: 60%;
  top: 20%; left: 20%;
  border-style: dashed;
  border-color: rgba(204,41,54,0.1);
}
.orbit-center-phone {
  position: absolute;
  width: 300px;
  height: 160px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,27,42,0.25), 0 0 0 3px rgba(13,27,42,0.08);
}
.orbit-center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.orbit-track {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 5;
  animation: orbit-spin 50s linear infinite;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbit-phone {
  --count: 8;
  --angle: calc(360deg / var(--count) * var(--i));
  position: absolute;
  width: 110px;
  top: 50%; left: 50%;
  transform: rotate(var(--angle)) translateY(-270px);
  margin-left: -55px;
  margin-top: -75px;
  z-index: 5;
}
.orbit-phone-steady {
  animation: orbit-steady 50s linear infinite;
}
@keyframes orbit-steady {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.orbit-phone a {
  display: block;
  text-decoration: none;
}
.orbit-phone img {
  width: 110px;
  height: 148px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(13,27,42,0.15), 0 0 0 2px rgba(13,27,42,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.orbit-phone:hover img {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(204,41,54,0.25), 0 0 0 3px rgba(204,41,54,0.15);
}
.orbit-label {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.orbit-phone:hover .orbit-label { color: var(--red); }

/* ============ STATS BAR ============ */
.lep-stats {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.lep-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.lep-stats__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.lep-stats__label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}

/* ============ SECTIONS ============ */
.lep-section {
  padding: 100px 0;
}
.lep-section--alt {
  background: var(--light);
}
.lep-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.lep-section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.lep-section__subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ============ STEPS ============ */
.lep-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.lep-steps__item {
  text-align: center;
  position: relative;
}
.lep-steps__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.lep-steps__image-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--white);
}
.lep-steps__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.lep-steps__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.lep-steps__text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ============ FEATURES ============ */
.lep-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lep-features--images {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lep-features__img-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.lep-features__img-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.lep-features__img-item img {
  width: 100%;
  height: auto;
  display: block;
}
.lep-features__item {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.lep-features__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.lep-features__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.lep-features__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.lep-features__text {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ============ USE CASES ============ */
.lep-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lep-usecases__card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.lep-usecases__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.lep-usecases__image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--border);
}
.lep-usecases__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lep-usecases__card:hover .lep-usecases__image {
  transform: scale(1.06);
}
.lep-usecases__title {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 20px 20px 4px;
  color: var(--navy);
}
.lep-usecases__text {
  font-size: 0.9rem;
  color: var(--slate);
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* ============ SHOWCASE ============ */
.lep-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lep-showcase__list {
  margin: 24px 0;
}
.lep-showcase__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--slate);
}
.lep-showcase__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.lep-showcase__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============ DEMO IMAGE ============ */
.lep-demo-image {
  max-width: 1000px;
  margin: 0 auto;
}
.lep-demo-image__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

/* ============ PRICING ============ */
.lep-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.lep-pricing__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.lep-pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lep-pricing__card--featured {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.lep-pricing__card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.lep-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lep-pricing__plan {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.lep-pricing__price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.lep-pricing__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}
.lep-pricing__desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.lep-pricing__note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}
.lep-pricing__original {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 8px;
}
.lep-pricing__flag {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.lep-pricing__features {
  margin-bottom: 28px;
  text-align: left;
}
.lep-pricing__features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.lep-pricing__features li:last-child { border-bottom: none; }
.lep-pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============ CTA SECTION ============ */
.lep-cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--red-dark) 100%);
  color: var(--white);
}
.lep-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.lep-cta__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto 32px;
}

/* ============ FOOTER ============ */
.lep-footer {
  background: var(--navy);
  padding: 80px 0 40px;
  color: #9ab0c8;
}
.lep-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.lep-footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.lep-footer__tagline {
  font-size: 0.9rem;
  color: #7a93ad;
}
.lep-footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.lep-footer__col a {
  display: block;
  font-size: 0.9rem;
  color: #7a93ad;
  padding: 5px 0;
  transition: color 0.2s;
}
.lep-footer__col a:hover { color: var(--red); }
.lep-footer__bottom {
  border-top: 1px solid #1a2d42;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #5a7a96;
}

/* ============ SUB-PAGE HERO ============ */
.lep-section--hero-sub {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}
.lep-section--hero-sub .lep-section__title {
  color: var(--white);
}
.lep-section--hero-sub .lep-section__subtitle {
  color: #9ab0c8;
}

/* ============ GRID UTILITIES ============ */
.lep-grid { display: grid; gap: 32px; }
.lep-grid--2col { grid-template-columns: repeat(2, 1fr); }
.lep-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* ============ FEATURE CARDS ============ */
.lep-feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.lep-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.lep-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.lep-feature-card p {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.65;
}
.lep-feature-list {
  margin-top: 16px;
}
.lep-feature-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--slate);
}
.lep-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============ STEPS (sub-page) ============ */
.lep-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.lep-step:last-child { margin-bottom: 0; }
.lep-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lep-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.lep-step p {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.6;
}
.lep-step__image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 16px;
  box-shadow: var(--shadow-md);
}

/* ============ FAQ ACCORDION ============ */
.lep-faq {
  max-width: 800px;
  margin: 0 auto;
}
.lep-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.lep-faq__item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.lep-faq__item summary::-webkit-details-marker { display: none; }
.lep-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 300;
}
.lep-faq__item[open] summary::after { content: '−'; }
.lep-faq__item p {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ============ FORMS ============ */
.lep-form {
  max-width: 640px;
  margin: 0 auto;
}
.lep-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.lep-form__input,
.lep-form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.lep-form__input:focus,
.lep-form__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,41,54,0.08);
}
.lep-form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============ LEGAL CONTENT ============ */
.lep-legal-content {
  max-width: 800px;
}
.lep-legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
}
.lep-legal-content h2:first-child { margin-top: 0; }
.lep-legal-content p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.lep-legal-content a {
  color: var(--red);
  font-weight: 500;
}
.lep-legal-content a:hover {
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .orbit-hero { width: 480px; height: 480px; margin: 30px auto 10px; }
  .orbit-center-phone { width: 200px; height: 110px; }
  .orbit-phone {
    width: 85px;
    transform: rotate(var(--angle)) translateY(-195px);
    margin-left: -42px;
    margin-top: -60px;
  }
  .orbit-phone img { width: 85px; height: 114px; border-radius: 11px; }
  .orbit-label { font-size: 9px; }
  .lep-features { grid-template-columns: repeat(2, 1fr); }
  .lep-usecases { grid-template-columns: repeat(2, 1fr); }
  .lep-showcase { grid-template-columns: 1fr; gap: 40px; }
  .lep-footer__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .lep-nav__container { padding: 0 16px; }
  .lep-nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 12px; z-index: 999; }
  .lep-nav__links.is-open { display: flex; }
  .lep-nav__mobile-toggle { display: flex; margin-left: auto; }
  .lep-nav__actions { display: none; }
  .lep-nav__links .lep-btn { margin-top: 8px; text-align: center; }
  .lep-nav__link--mobile-only { display: block; }
  .lep-grid--2col, .lep-grid--3col { grid-template-columns: 1fr; }
  .lep-form__row { grid-template-columns: 1fr; }
  .lep-section--hero-sub { padding: 120px 0 60px; }
  .orbit-hero { width: 320px; height: 320px; margin: 20px auto 0; }
  .orbit-center-phone { width: 130px; height: 72px; border-radius: 12px; }
  .orbit-phone {
    width: 60px;
    transform: rotate(var(--angle)) translateY(-130px);
    margin-left: -30px;
    margin-top: -50px;
  }
  .orbit-phone img { width: 60px; height: 80px; border-radius: 9px; }
  .orbit-label { font-size: 7px; margin-top: 4px; }
  .orbit-ring--inner { display: none; }
  .lep-steps { grid-template-columns: 1fr; gap: 48px; }
  .lep-features { grid-template-columns: 1fr; }
  .lep-usecases { grid-template-columns: 1fr; }
  .lep-pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .lep-pricing__card--featured { transform: none; }
  .lep-pricing__card--featured:hover { transform: translateY(-4px); }
  .lep-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lep-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lep-hero { padding: 100px 20px 40px; min-height: auto; }
  .lep-section { padding: 60px 0; }
}

@media (max-width: 479px) {
  .orbit-hero { width: 280px; height: 280px; }
  .orbit-center-phone { width: 100px; height: 56px; border-radius: 10px; }
  .orbit-phone {
    width: 50px;
    transform: rotate(var(--angle)) translateY(-110px);
    margin-left: -25px;
    margin-top: -42px;
  }
  .orbit-phone img { width: 50px; height: 66px; border-radius: 7px; }
  .orbit-label { font-size: 6px; }
  .lep-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lep-hero__title { font-size: 2rem; }
}
