@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --lr-bg: #080c18;
  --lr-surface: #0f1629;
  --lr-primary: #06b6d4;
  --lr-secondary: #8b5cf6;
  --lr-text: #f1f5f9;
  --lr-muted: #94a3b8;
  --lr-border: #1e293b;
  --lr-gradient: linear-gradient(135deg, #06b6d4, #8b5cf6);
  --lr-glass-bg: rgba(15, 22, 41, 0.65);
  --lr-glass-border: rgba(6, 182, 212, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--lr-bg);
  color: var(--lr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lr-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--lr-secondary); }

/* ========== LR-HEADER ========== */
.lr-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 12, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lr-border);
  transition: background 0.3s ease;
}

.lr-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lr-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lr-header__logo-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.lr-header__logo-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--lr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lr-nav { display: flex; align-items: center; gap: 2rem; }

.lr-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lr-muted);
  transition: color 0.3s ease;
  position: relative;
}

.lr-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lr-gradient);
  transition: width 0.3s ease;
}

.lr-nav__link:hover { color: var(--lr-text); }
.lr-nav__link:hover::after { width: 100%; }

.lr-nav__link--active {
  color: var(--lr-primary);
}
.lr-nav__link--active::after { width: 100%; }

.lr-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--lr-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.lr-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
  color: #fff;
}

/* Burger */
.lr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 4px;
}

.lr-burger__line {
  width: 26px;
  height: 2px;
  background: var(--lr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lr-burger--open .lr-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lr-burger--open .lr-burger__line:nth-child(2) { opacity: 0; }
.lr-burger--open .lr-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.lr-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  z-index: 990;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.lr-mobile-menu--open { display: flex; }

.lr-mobile-menu__link {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lr-muted);
  transition: color 0.3s ease;
}

.lr-mobile-menu__link:hover { color: var(--lr-primary); }

/* ========== LR-HERO ========== */
.lr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 12, 24, 0.95) 0%,
    rgba(8, 12, 24, 0.7) 50%,
    rgba(8, 12, 24, 0.4) 100%
  );
  z-index: 1;
}

.lr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}

.lr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lr-primary);
  margin-bottom: 1.5rem;
}

.lr-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.lr-hero__title-accent {
  background: var(--lr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lr-hero__desc {
  font-size: 1.1rem;
  color: var(--lr-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lr-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== LR-BTN ========== */
.lr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lr-btn--primary {
  background: var(--lr-gradient);
  color: #fff;
}
.lr-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
  color: #fff;
}

.lr-btn--outline {
  background: transparent;
  color: var(--lr-text);
  border: 1px solid var(--lr-border);
}
.lr-btn--outline:hover {
  border-color: var(--lr-primary);
  color: var(--lr-primary);
  transform: translateY(-2px);
}

.lr-btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ========== LR-SECTION ========== */
.lr-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.lr-section--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.lr-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lr-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lr-primary);
  margin-bottom: 0.75rem;
}

.lr-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.lr-section__title-accent {
  background: var(--lr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lr-section__desc {
  font-size: 1rem;
  color: var(--lr-muted);
  line-height: 1.7;
}

/* ========== LR-CARD (Glassmorphism) ========== */
.lr-card {
  background: var(--lr-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lr-glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.08);
}

.lr-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
  color: var(--lr-primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.lr-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Exo 2', sans-serif;
}

.lr-card__text {
  font-size: 0.9rem;
  color: var(--lr-muted);
  line-height: 1.6;
}

.lr-card__media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.lr-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lr-card:hover .lr-card__media img {
  transform: scale(1.05);
}

/* ========== LR-SPLIT (zigzag layout) ========== */
.lr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.lr-split--reverse { direction: rtl; }
.lr-split--reverse > * { direction: ltr; }

.lr-split__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--lr-border);
}

.lr-split__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lr-split__media:hover img { transform: scale(1.03); }

.lr-split__content { padding: 1rem 0; }

.lr-split__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.lr-split__text {
  font-size: 1rem;
  color: var(--lr-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ========== LR-GRID ========== */
.lr-grid {
  display: grid;
  gap: 1.5rem;
}

.lr-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lr-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ========== LR-GALLERY ========== */
.lr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lr-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lr-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lr-gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.12);
}

.lr-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ========== LR-AWARDS ========== */
.lr-award {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--lr-glass-bg);
  border: 1px solid var(--lr-glass-border);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.lr-award:hover { border-color: rgba(139, 92, 246, 0.4); }

.lr-award__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
  color: #fbbf24;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.lr-award__info { flex: 1; }

.lr-award__title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lr-award__desc {
  font-size: 0.85rem;
  color: var(--lr-muted);
}

/* ========== LR-CTA ========== */
.lr-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
  border-top: 1px solid var(--lr-border);
  border-bottom: 1px solid var(--lr-border);
}

.lr-cta__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.lr-cta__text {
  color: var(--lr-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ========== LR-FOOTER ========== */
.lr-footer {
  background: var(--lr-surface);
  border-top: 1px solid var(--lr-border);
  padding: 4rem 1.5rem 2rem;
}

.lr-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.lr-footer__brand-desc {
  font-size: 0.9rem;
  color: var(--lr-muted);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.lr-footer__col-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--lr-text);
}

.lr-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lr-footer__link {
  font-size: 0.875rem;
  color: var(--lr-muted);
  transition: color 0.3s ease;
}

.lr-footer__link:hover { color: var(--lr-primary); }

.lr-footer__bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--lr-muted);
}

/* ========== LR-REVIEW ========== */
.lr-review {
  background: var(--lr-glass-bg);
  border: 1px solid var(--lr-glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lr-review:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.3);
}

.lr-review__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lr-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lr-primary), var(--lr-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.lr-review__author {
  font-weight: 600;
  font-size: 0.95rem;
}

.lr-review__stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.lr-review__text {
  font-size: 0.9rem;
  color: var(--lr-muted);
  line-height: 1.6;
}

/* ========== LR-STAT ========== */
.lr-stat {
  text-align: center;
  padding: 1.5rem;
}

.lr-stat__number {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--lr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.lr-stat__label {
  font-size: 0.9rem;
  color: var(--lr-muted);
}

/* ========== LR-WAVE-DIVIDER ========== */
.lr-wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.lr-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== LR-FEATURE-LIST ========== */
.lr-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lr-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--lr-muted);
}

.lr-feature-list__item i {
  color: var(--lr-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ========== LR-COOKIE-BANNER ========== */
.lr-cookie {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--lr-surface);
  border-top: 1px solid var(--lr-border);
  padding: 1.25rem 1.5rem;
}

.lr-cookie__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lr-cookie__text {
  font-size: 0.875rem;
  color: var(--lr-muted);
  flex: 1;
}

.lr-cookie__text a { color: var(--lr-primary); text-decoration: underline; }

.lr-cookie__actions { display: flex; gap: 0.75rem; }

/* ========== LR-LEGAL ========== */
.lr-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.lr-legal__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lr-legal__updated {
  font-size: 0.85rem;
  color: var(--lr-muted);
  margin-bottom: 2.5rem;
}

.lr-legal__section {
  margin-bottom: 2rem;
}

.lr-legal__heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--lr-primary);
  font-family: 'Exo 2', sans-serif;
}

.lr-legal__text {
  font-size: 0.95rem;
  color: var(--lr-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.lr-legal__text ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.lr-legal__text li {
  margin-bottom: 0.4rem;
}

/* ========== LR-PAGE-HERO ========== */
.lr-page-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.06) 0%, transparent 100%);
}

.lr-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.lr-page-hero__desc {
  font-size: 1.05rem;
  color: var(--lr-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== LR-RATING-BOX ========== */
.lr-rating {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--lr-glass-bg);
  border: 1px solid var(--lr-glass-border);
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.lr-rating__score {
  font-family: 'Exo 2', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--lr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lr-rating__stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.lr-rating__count {
  font-size: 0.95rem;
  color: var(--lr-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.1); }
  50% { box-shadow: 0 0 30px rgba(6, 182, 212, 0.2); }
}

.lr-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lr-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .lr-footer__inner { grid-template-columns: 1fr 1fr; }
  .lr-split { grid-template-columns: 1fr; gap: 2rem; }
  .lr-split--reverse { direction: ltr; }
  .lr-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lr-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lr-nav { display: none; }
  .lr-burger { display: flex; }

  .lr-hero__content { padding: 7rem 1.25rem 3rem; }
  .lr-section { padding: 3.5rem 1.25rem; }
  .lr-grid--2,
  .lr-grid--3,
  .lr-grid--4 { grid-template-columns: 1fr; }
  .lr-gallery { grid-template-columns: 1fr; }
  .lr-gallery__item img { height: 200px; }

  .lr-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lr-footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .lr-cookie__inner { flex-direction: column; text-align: center; }
  .lr-cookie__actions { justify-content: center; }

  .lr-award { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .lr-hero__title { font-size: 2rem; }
  .lr-hero__actions { flex-direction: column; width: 100%; }
  .lr-btn { width: 100%; justify-content: center; }
  .lr-header__inner { height: 60px; }
  .lr-header__logo-img { width: 32px; height: 32px; }
  .lr-header__logo-text { font-size: 1.05rem; }
}

/* ========== SELECTION ========== */
::selection {
  background: rgba(6, 182, 212, 0.3);
  color: #fff;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--lr-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--lr-primary); }
