:root{
  --lm-bg:#07111F;
  --lm-surface:#0D1A2E;
  --lm-surface-soft:#13233A;
  --lm-text:#F8FAFC;
  --lm-muted:#B9C4D0;
  --lm-gold:#D4AF37;
  --lm-teal:#18D5E8;
  --lm-border:rgba(212,175,55,.28);
  --lm-shadow:0 24px 80px rgba(0,0,0,.35);
  --lm-radius:24px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--lm-bg);
  color:var(--lm-text);
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.lm-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 22px;
  transition:.35s ease;
}

.lm-header.scrolled{
  background:rgba(7,17,31,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.lm-header-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.lm-logo img{
  height:46px;
  width:auto;
}

.lm-menu-btn{
  width:48px;
  height:48px;
  border:1px solid var(--lm-border);
  border-radius:50%;
  background:rgba(255,255,255,.04);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
}

.lm-menu-btn span{
  width:20px;
  height:2px;
  background:var(--lm-teal);
  border-radius:20px;
}

.lm-side-menu{
  position:fixed;
  top:0;
  right:-360px;
  width:320px;
  height:100vh;
  background:rgba(7,17,31,.96);
  backdrop-filter:blur(24px);
  z-index:1001;
  padding:28px;
  transition:.35s ease;
  border-left:1px solid var(--lm-border);
}

.lm-side-menu.active{
  right:0;
}

.lm-side-menu-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:35px;
  color:var(--lm-gold);
  font-weight:700;
}

.lm-side-menu-head button{
  background:none;
  border:none;
  color:var(--lm-text);
  font-size:34px;
  cursor:pointer;
}

.lm-side-menu a{
  display:block;
  padding:16px 0;
  color:var(--lm-text);
  font-size:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.lm-side-menu a:hover{
  color:var(--lm-teal);
}

.lm-vip-link{
  color:var(--lm-gold)!important;
}

.lm-menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:1000;
  opacity:0;
  pointer-events:none;
  transition:.3s ease;
}

.lm-menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}
	/* =========================================
   HERO SECTION
========================================= */

.lm-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#020d25;
}

.lm-hero-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,#00c8ff20 0%,transparent 35%),
        radial-gradient(circle at bottom left,#0066ff18 0%,transparent 45%),
        linear-gradient(180deg,#04112f 0%,#020b1d 100%);
    animation:heroMove 10s ease-in-out infinite alternate;
}

.lm-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.30);
    backdrop-filter:blur(2px);
}

.lm-hero-content{
    position:relative;
    z-index:5;
    width:min(900px,90%);
    text-align:center;
}

.lm-hero-content span{
    display:inline-block;
    color:#00d4ff;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.lm-hero-content h1{
    color:#fff;
    font-size:clamp(46px,7vw,82px);
    font-weight:800;
    line-height:1.08;
    margin-bottom:24px;
}

.lm-hero-content p{
    color:#bfc9d8;
    font-size:22px;
    line-height:1.8;
    max-width:760px;
    margin:auto;
}

.lm-hero-actions{
    margin-top:55px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.lm-btn{
    padding:18px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.lm-btn-primary{
    background:#00d4ff;
    color:#021325;
    box-shadow:0 0 35px rgba(0,212,255,.35);
}

.lm-btn-primary:hover{
    transform:translateY(-4px);
}

.lm-btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:white;
    background:rgba(255,255,255,.05);
}

.lm-btn-secondary:hover{
    background:rgba(255,255,255,.10);
}

@keyframes heroMove{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

@media(max-width:768px){

.lm-hero-content h1{
font-size:48px;
}

.lm-hero-content p{
font-size:18px;
}

.lm-btn{
width:100%;
max-width:320px;
}

}
	.lm-logo{
    width:68px;
    height:auto;
    display:block;
    filter:
        drop-shadow(0 0 12px rgba(0,212,255,.35))
        drop-shadow(0 0 28px rgba(0,212,255,.15));
    transition:.35s;
}

.lm-logo:hover{
    transform:scale(1.06);
}
	/* SOLUTIONS SECTION */

.lm-solutions{
  padding:120px 6vw;
  background:linear-gradient(180deg,#07111F 0%,#0B1628 100%);
}

.lm-section-head{
  max-width:780px;
  margin:0 auto 60px;
  text-align:center;
}

.lm-section-head span{
  color:var(--lm-teal);
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:13px;
  font-weight:700;
}

.lm-section-head h2{
  margin-top:18px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.1;
}

.lm-section-head p{
  margin:22px auto 0;
  color:var(--lm-muted);
  font-size:18px;
  line-height:1.7;
}

.lm-solutions-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.lm-solution-card{
  padding:34px;
  min-height:270px;
  border-radius:var(--lm-radius);
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid var(--lm-border);
  box-shadow:var(--lm-shadow);
  transition:.35s ease;
}

.lm-solution-card:hover{
  transform:translateY(-8px);
  border-color:rgba(24,213,232,.45);
}

.lm-card-number{
  color:var(--lm-gold);
  font-size:14px;
  margin-bottom:22px;
}

.lm-solution-card h3{
  font-size:30px;
  margin-bottom:14px;
}

.lm-solution-card p{
  color:var(--lm-muted);
  font-size:16px;
  line-height:1.7;
}

.lm-solution-card a{
  display:inline-block;
  margin-top:28px;
  color:var(--lm-teal);
  font-weight:700;
}

.lm-solution-card-wide{
  grid-column:span 2;
}

@media(max-width:800px){
  .lm-solutions-grid{
    grid-template-columns:1fr;
  }

  .lm-solution-card-wide{
    grid-column:span 1;
  }
}
	/* ABOUT SECTION */

.lm-about{
  padding:120px 6vw;
  background:linear-gradient(180deg,#0B1628 0%,#07111F 100%);
}

.lm-about-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

.lm-about-text span{
  color:var(--lm-teal);
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:13px;
  font-weight:700;
}

.lm-about-text h2{
  margin-top:18px;
  font-size:clamp(34px,5vw,56px);
  line-height:1.1;
}

.lm-about-text p{
  margin-top:24px;
  color:var(--lm-muted);
  font-size:18px;
  line-height:1.8;
}

.lm-about-points{
  display:grid;
  gap:22px;
}

.lm-about-points div{
  padding:30px;
  border-radius:var(--lm-radius);
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid var(--lm-border);
  box-shadow:var(--lm-shadow);
}

.lm-about-points strong{
  color:var(--lm-gold);
  font-size:14px;
}

.lm-about-points h3{
  margin-top:12px;
  font-size:25px;
}

.lm-about-points p{
  margin-top:10px;
  color:var(--lm-muted);
  font-size:16px;
  line-height:1.7;
}

@media(max-width:900px){
  .lm-about-inner{
    grid-template-columns:1fr;
  }
}
	/* ===========================
   PROCESS SECTION
=========================== */

.lm-process{
    padding:120px 8%;
    position:relative;
}

.lm-process .lm-section-head{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.lm-process .lm-section-head span{
    color:var(--lm-teal);
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
}

.lm-process .lm-section-head h2{
    font-size:58px;
    margin:20px 0;
    color:#fff;
    line-height:1.1;
}

.lm-process .lm-section-head p{
    color:rgba(255,255,255,.72);
    font-size:20px;
    line-height:1.8;
}

.lm-process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.lm-process-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
    transition:.35s ease;
}

.lm-process-card:hover{
    transform:translateY(-10px);
    border-color:var(--lm-teal);
    box-shadow:0 20px 45px rgba(0,210,255,.12);
}

.lm-process-number{
    color:var(--lm-gold);
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

.lm-process-card h3{
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.lm-process-card p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    font-size:18px;
}

@media(max-width:992px){

.lm-process-grid{
grid-template-columns:1fr;
}

.lm-process .lm-section-head h2{
font-size:42px;
}

}
	/* PORTFOLIO SECTION */

.lm-portfolio{
  padding:120px 6vw;
  background:linear-gradient(180deg,#07111F 0%,#0B1628 100%);
}

.lm-portfolio-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.lm-portfolio-card{
  min-height:360px;
  padding:34px;
  border-radius:var(--lm-radius);
  background:
    linear-gradient(180deg,rgba(24,213,232,.10),rgba(7,17,31,.92)),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid var(--lm-border);
  box-shadow:var(--lm-shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.lm-portfolio-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle,rgba(24,213,232,.18),transparent 45%);
  opacity:0;
  transition:.35s ease;
}

.lm-portfolio-card:hover{
  transform:translateY(-8px);
  border-color:rgba(24,213,232,.5);
}

.lm-portfolio-card:hover::before{
  opacity:1;
}

.lm-portfolio-tag{
  color:var(--lm-gold);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:18px;
  position:relative;
  z-index:2;
}

.lm-portfolio-card h3{
  font-size:30px;
  margin-bottom:14px;
  position:relative;
  z-index:2;
}

.lm-portfolio-card p{
  color:var(--lm-muted);
  font-size:16px;
  line-height:1.7;
  position:relative;
  z-index:2;
}

@media(max-width:900px){
  .lm-portfolio-grid{
    grid-template-columns:1fr;
  }

  .lm-portfolio-card{
    min-height:280px;
  }
}
	/* ==========================
   TESTIMONIALS
========================== */

.lm-testimonials{
    padding:120px 8%;
}

.lm-testimonial-grid{
    max-width:1300px;
    margin:70px auto 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.lm-testimonial-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
    transition:.35s ease;
}

.lm-testimonial-card:hover{
    transform:translateY(-10px);
    border-color:var(--lm-teal);
    box-shadow:0 20px 45px rgba(0,210,255,.12);
}

.lm-stars{
    color:#FFD34D;
    font-size:24px;
    margin-bottom:25px;
    letter-spacing:3px;
}

.lm-testimonial-card p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    font-size:18px;
    margin-bottom:35px;
}

.lm-testimonial-card h4{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.lm-testimonial-card span{
    color:var(--lm-teal);
    font-size:15px;
}

@media(max-width:992px){

.lm-testimonial-grid{
grid-template-columns:1fr;
}

}
	/* FAQ SECTION */

.lm-faq{
  padding:120px 8%;
  background:linear-gradient(180deg,#07111F 0%,#0B1628 100%);
}

.lm-faq-list{
  max-width:1000px;
  margin:70px auto 0;
  display:grid;
  gap:18px;
}

.lm-faq-item{
  border:1px solid var(--lm-border);
  border-radius:20px;
  background:rgba(255,255,255,.035);
  overflow:hidden;
}

.lm-faq-item button{
  width:100%;
  padding:24px 28px;
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  font-weight:700;
  text-align:left;
  display:flex;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
}

.lm-faq-item button span{
  color:var(--lm-teal);
  font-size:24px;
}

.lm-faq-item p{
  max-height:0;
  overflow:hidden;
  padding:0 28px;
  color:var(--lm-muted);
  font-size:16px;
  line-height:1.7;
  transition:.35s ease;
}

.lm-faq-item.active p{
  max-height:200px;
  padding:0 28px 24px;
}

.lm-faq-item.active button span{
  transform:rotate(45deg);
}
	/* ===========================
   CONTACT
=========================== */

.lm-contact{
    padding:120px 20px;
}

.lm-contact-inner{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.lm-contact-text span{
    color:var(--lm-teal);
    text-transform:uppercase;
    letter-spacing:4px;
    font-weight:700;
}

.lm-contact-text h2{
    font-size:58px;
    margin:20px 0;
    color:#fff;
}

.lm-contact-text p{
    color:rgba(255,255,255,.75);
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.lm-contact-info{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.lm-contact-info a{
    color:var(--lm-teal);
    font-weight:700;
    font-size:18px;
}

.lm-contact-form{
    background:var(--lm-surface);
    border:1px solid var(--lm-border);
    border-radius:24px;
    padding:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.lm-contact-form input,
.lm-contact-form textarea{
    width:100%;
    background:var(--lm-surface-soft);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:16px 18px;
    color:#fff;
    font-size:16px;
    outline:none;
}

.lm-contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.lm-contact-form input:focus,
.lm-contact-form textarea:focus{
    border-color:var(--lm-teal);
}

.lm-contact-form button{
    background:var(--lm-teal);
    color:#07111F;
    border:none;
    border-radius:14px;
    padding:18px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.lm-contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(0,210,255,.25);
}

@media(max-width:992px){

.lm-contact-inner{
grid-template-columns:1fr;
}

.lm-contact-text h2{
font-size:42px;
}

}
	/* ==========================
   FOOTER
========================== */

.lm-footer{
    margin-top:120px;
    background:#050D18;
    border-top:1px solid rgba(255,255,255,.08);
}

.lm-footer-inner{
    max-width:1280px;
    margin:auto;
    padding:80px 20px 50px;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:50px;
}

.lm-footer-brand img{
    width:70px;
    margin-bottom:22px;
}

.lm-footer-brand p{
    color:rgba(255,255,255,.68);
    line-height:1.8;
    max-width:320px;
}

.lm-footer-links,
.lm-footer-contact{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.lm-footer-links a,
.lm-footer-contact a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.lm-footer-links a:hover,
.lm-footer-contact a:hover{
    color:var(--lm-teal);
}

.lm-footer-bottom{
    max-width:1280px;
    margin:auto;
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.lm-footer-bottom span{
    color:rgba(255,255,255,.55);
}

.lm-footer-bottom div{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.lm-footer-bottom a{
    color:rgba(255,255,255,.65);
    text-decoration:none;
    font-size:14px;
}

.lm-footer-bottom a:hover{
    color:var(--lm-teal);
}

@media(max-width:992px){

.lm-footer-inner{
grid-template-columns:1fr;
}

.lm-footer-bottom{
flex-direction:column;
align-items:flex-start;
}

}