.lpw-homepage{
  --lpw-font-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --lpw-font-heading:"Anton","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  --lpw-purple:#9f35a5;
  --lpw-purple-dark:#6f1d76;
  --lpw-purple-soft:#c86cd0;
  --lpw-purple-faint:rgba(159,53,165,.08);

  --lpw-dark:#0a0a0d;
  --lpw-dark-2:#121217;
  --lpw-dark-3:#1b1b23;

  --lpw-text:#121319;
  --lpw-text-soft:#4d525d;
  --lpw-text-muted:#6d7380;

  --lpw-soft:#f8f8fa;
  --lpw-soft-2:#f4f4f7;

  --lpw-border:rgba(18,19,25,.08);
  --lpw-border-strong:rgba(18,19,25,.14);

  --lpw-shadow-xs:0 6px 18px rgba(12,12,18,.04);
  --lpw-shadow-sm:0 12px 28px rgba(12,12,18,.06);
  --lpw-shadow:0 18px 42px rgba(12,12,18,.08);
  --lpw-shadow-lg:0 28px 70px rgba(12,12,18,.12);
  --lpw-shadow-purple:0 18px 42px rgba(111,29,118,.18);

  --lpw-radius-xs:14px;
  --lpw-radius-sm:18px;
  --lpw-radius:22px;
  --lpw-radius-lg:28px;

  --lpw-transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1),
    border-color .28s ease,
    background-color .28s ease,
    opacity .28s ease,
    color .2s ease;

  font-family:var(--lpw-font-body);
  color:var(--lpw-text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

.lpw-homepage *{box-sizing:border-box;}
.lpw-homepage a{text-decoration:none;}
.lpw-homepage img{max-width:100%;display:block;}
.lpw-homepage svg{display:block;}

html.lpw-no-scroll,
body.lpw-no-scroll{
  overflow:hidden;
}

body{
  margin:0;
  background:#fff;
}

.lpw-container{
  max-width:1240px;
  margin:auto;
  padding:0 24px;
}

/* TYPE */

.lpw-hero h1,
.lpw-overview-heading .is-main,
.lpw-projects-title,
.lpw-featured-section-title,
.lpw-faq-head h2,
.lpw-final-cta h2{
  font-family:var(--lpw-font-heading);
  font-weight:400;
  text-transform:uppercase;
}

.lpw-hero-card h2,
.lpw-footer-brand h2,
.lpw-project-content h3,
.lpw-featured-card h3,
.lpw-overview-card h3{
  font-family:var(--lpw-font-body);
  font-weight:800;
}

/* NAVBAR */

.lpw-topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
}

.lpw-topbar-inner{
  max-width:1480px;
  margin:auto;
  padding:14px 24px 0;
}

.lpw-navbar{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:8px 12px;
  border-radius:22px;
  background:rgba(12,12,16,.56);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
  box-shadow:0 10px 30px rgba(0,0,0,.16);
  transition:background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.lpw-topbar.is-scrolled .lpw-navbar{
  background:rgba(12,12,16,.86);
  border-color:rgba(255,255,255,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.24);
}

.lpw-navbar.menu-open{
  background:rgba(12,12,16,.94);
  border-color:rgba(255,255,255,.10);
}

.lpw-brand-block{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:300px;
}

.lpw-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  height:108px;
  padding:8px 20px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 28px rgba(0,0,0,.14);
}

.lpw-logo img{
  height:100%;
  max-height:100%;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.18));
}

.lpw-menu{
  display:flex;
  gap:18px;
  justify-content:center;
  align-items:center;
}

.lpw-menu a{
  position:relative;
  color:#fff;
  font-weight:600;
  font-size:15px;
  letter-spacing:-.01em;
  opacity:.9;
  transition:opacity .24s ease, color .24s ease;
}

.lpw-menu a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--lpw-purple-soft),rgba(255,255,255,.92));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .28s ease;
}

.lpw-menu a:hover,
.lpw-menu a[aria-current="page"]{
  opacity:1;
}

.lpw-menu a:hover:after,
.lpw-menu a[aria-current="page"]:after{
  transform:scaleX(1);
}

.lpw-nav-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.lpw-nav-social{
  display:flex;
  align-items:center;
  gap:8px;
}

.lpw-nav-social a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition:var(--lpw-transition);
}

.lpw-nav-social a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.18);
}

.lpw-nav-social svg{
  width:16px;
  height:16px;
}

.lpw-nav-phone{
  color:#fff;
  font-weight:700;
  white-space:nowrap;
  letter-spacing:-.01em;
}

/* HAMBURGER */

.lpw-menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  z-index:3;
}

.lpw-menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:transform .24s ease, opacity .24s ease;
}

.lpw-navbar.menu-open .lpw-menu-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.lpw-navbar.menu-open .lpw-menu-toggle span:nth-child(2){
  opacity:0;
}

.lpw-navbar.menu-open .lpw-menu-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* BUTTONS */

.lpw-btn{
  position:relative;
  overflow:hidden;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  letter-spacing:-.01em;
  transition:var(--lpw-transition);
  border:none;
  cursor:pointer;
}

.lpw-btn-primary{
  background:linear-gradient(135deg,var(--lpw-purple-soft),var(--lpw-purple),var(--lpw-purple-dark));
  color:#fff;
  box-shadow:var(--lpw-shadow-purple);
}

.lpw-btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 48px rgba(111,29,118,.24);
}

.lpw-btn-secondary{
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.lpw-btn-secondary:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.34);
}

.lpw-btn-light{
  border:1px solid rgba(18,19,25,.10);
  color:var(--lpw-text);
  background:#fff;
  box-shadow:var(--lpw-shadow-xs);
}

.lpw-btn-light:hover{
  transform:translateY(-2px);
  box-shadow:var(--lpw-shadow-sm);
}

/* HERO */

.lpw-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(100deg, rgba(5,5,8,.94) 0%, rgba(8,8,12,.86) 36%, rgba(12,12,18,.70) 58%, rgba(22,14,28,.58) 100%),
    url('images/ChatGPT-Image-Mar-12-2026-11_04_01-AM.png') center/cover no-repeat;
}

.lpw-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 18%, rgba(159,53,165,.22), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.05), transparent 18%),
    radial-gradient(circle at 72% 78%, rgba(159,53,165,.14), transparent 28%);
  pointer-events:none;
}

.lpw-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.18) 100%);
  pointer-events:none;
}

.lpw-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1480px;
  margin:auto;
  padding:182px 36px 82px;
}

.lpw-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,480px);
  gap:40px;
  align-items:center;
}

.lpw-hero-left{
  max-width:780px;
}

.lpw-eyebrow{
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.2px;
  margin-bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  text-transform:uppercase;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
}

.lpw-eyebrow:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--lpw-purple-soft),#fff);
  box-shadow:0 0 12px rgba(255,255,255,.24);
}

.lpw-hero h1{
  color:#fff;
  font-size:clamp(46px,4.8vw,74px);
  line-height:1.02;
  margin:0 0 18px;
  letter-spacing:.012em;
  max-width:900px;
}

.lpw-hero h1 span{
  display:block;
  white-space:nowrap;
}

.lpw-hero h1 span + span{
  margin-top:6px;
}

.lpw-hero p{
  color:rgba(255,255,255,.88);
  font-size:18px;
  margin:0 0 24px;
  max-width:650px;
  line-height:1.72;
  letter-spacing:-.01em;
}

.lpw-hero-actions{
  display:flex;
  gap:14px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.lpw-hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.lpw-trust-pill{
  padding:10px 15px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:600;
  letter-spacing:-.01em;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.lpw-clients{
  margin-top:28px;
  max-width:820px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
}

.lpw-clients-lead{
  margin:0 0 12px;
  font-size:14px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

.lpw-clients-list{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  font-size:18px;
  font-weight:700;
  letter-spacing:-.01em;
  color:#fff;
}

.lpw-clients-list span{
  position:relative;
}

.lpw-clients-list span:not(:last-child)::after{
  content:"•";
  margin-left:14px;
  color:rgba(255,255,255,.42);
}

.lpw-clients-more{
  font-weight:500;
  color:rgba(255,255,255,.74);
}

.lpw-hero-card{
  position:relative;
  padding:26px;
  border-radius:26px;
  color:#fff;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 56px rgba(0,0,0,.22);
  width:100%;
  max-width:500px;
  margin-left:auto;
  overflow:hidden;
}

.lpw-hero-card:before{
  content:"";
  position:absolute;
  top:-90px;
  right:-70px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.14), transparent 68%);
}

.lpw-hero-card h2{
  position:relative;
  z-index:1;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.03em;
  margin:0 0 10px;
  color:#fff;
}

.lpw-hero-card p{
  position:relative;
  z-index:1;
  margin:0 0 16px;
  font-size:15px;
  line-height:1.68;
  color:rgba(255,255,255,.84);
}

.lpw-hero-list{
  position:relative;
  z-index:1;
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.lpw-hero-list li{
  margin:0;
  padding:13px 14px 13px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  font-size:15px;
  line-height:1.48;
  display:flex;
  align-items:center;
  gap:12px;
}

.lpw-hero-list li:before{
  content:"";
  flex:0 0 8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--lpw-purple-soft),#fff);
}

/* OVERVIEW */

.lpw-overview{
  position:relative;
  overflow:hidden;
  background:#fff;
  padding-top:56px;
  padding-bottom:30px;
}

.lpw-overview:before{
  content:"";
  position:absolute;
  left:-120px;
  top:10px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(159,53,165,.08), transparent 72%);
  pointer-events:none;
}

.lpw-overview:after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-80px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(159,53,165,.05), transparent 72%);
  pointer-events:none;
}

.lpw-overview-shell{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:20px;
  align-items:stretch;
  margin-bottom:16px;
}

.lpw-overview-head{
  padding:4px 0;
}

.lpw-overview-label-wrap{
  display:flex;
  justify-content:flex-start;
  margin-bottom:14px;
}

.lpw-overview-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--lpw-purple);
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(180deg,#fff,#f8f8fb);
  border:1px solid rgba(159,53,165,.14);
  box-shadow:
    0 6px 14px rgba(12,12,18,.04),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.lpw-overview-label:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--lpw-purple),var(--lpw-purple-dark));
  box-shadow:0 0 10px rgba(159,53,165,.4);
}

.lpw-overview-heading{
  margin:0;
  color:var(--lpw-text);
}

.lpw-overview-heading .is-main{
  display:block;
  font-size:clamp(46px,5vw,78px);
  line-height:1;
  letter-spacing:.01em;
  color:var(--lpw-text);
}

.lpw-overview-heading .is-soft{
  display:block;
  margin-top:10px;
  font-size:clamp(18px,1.8vw,30px);
  line-height:1.12;
  font-weight:700;
  color:#727782;
  letter-spacing:-.03em;
  max-width:100%;
}

.lpw-overview-intro-card{
  position:relative;
  padding:26px 24px;
  border-radius:26px;
  background:linear-gradient(135deg, rgba(159,53,165,.98), rgba(92,28,101,.98) 58%, rgba(36,13,40,.98));
  color:#fff;
  box-shadow:0 24px 54px rgba(92,28,101,.18);
  overflow:hidden;
}

.lpw-overview-intro-card:before{
  content:"";
  position:absolute;
  top:-90px;
  right:-80px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.16), transparent 68%);
}

.lpw-overview-intro,
.lpw-overview-intro-sub{
  position:relative;
  z-index:1;
}

.lpw-overview-intro{
  margin:0;
  font-size:18px;
  line-height:1.76;
  color:#fff;
}

.lpw-overview-intro-line{
  position:relative;
  z-index:1;
  width:100%;
  height:1px;
  margin:16px 0 14px;
  background:rgba(255,255,255,.18);
}

.lpw-overview-intro-sub{
  margin:0;
  font-size:15px;
  line-height:1.72;
  color:rgba(255,255,255,.84);
}

.lpw-overview-cards{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.lpw-overview-card{
  height:100%;
  padding:24px 20px;
  border-radius:22px;
  background:linear-gradient(180deg, #fff, #fbfbfd);
  border:1px solid rgba(18,19,25,.08);
  box-shadow:var(--lpw-shadow-sm);
  transition:var(--lpw-transition);
}

.lpw-overview-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--lpw-shadow);
  border-color:rgba(159,53,165,.12);
}

.lpw-overview-card-kicker{
  display:inline-block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.3px;
  text-transform:uppercase;
  color:var(--lpw-purple);
}

.lpw-overview-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--lpw-text);
}

.lpw-overview-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:var(--lpw-text-soft);
}

/* SECTIONS */

.lpw-projects,
.lpw-featured-section,
.lpw-faq,
.lpw-final-cta{
  padding:58px 0;
}

/* LABELS */

.lpw-projects-label,
.lpw-featured-section-label,
.lpw-cta-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--lpw-purple);
  margin-bottom:14px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(159,53,165,.10);
  box-shadow:0 8px 18px rgba(12,12,18,.03);
}

.lpw-projects-label:before,
.lpw-featured-section-label:before,
.lpw-cta-label:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--lpw-purple),var(--lpw-purple-dark));
}

/* RECENT PROJECTS */

.lpw-projects{
  background:linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  padding-top:52px;
  padding-bottom:60px;
}

.lpw-projects-head{
  max-width:860px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:24px;
}

.lpw-projects-title{
  margin:0 0 10px;
  font-size:clamp(40px,4.5vw,68px);
  line-height:1.02;
  letter-spacing:.02em;
  color:var(--lpw-text);
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}

.lpw-projects-copy{
  margin:0 auto;
  max-width:720px;
  font-size:17px;
  line-height:1.72;
  color:var(--lpw-text-soft);
}

.lpw-projects-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.lpw-project-card{
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(18,19,25,.06);
  box-shadow:var(--lpw-shadow-sm);
  transition:var(--lpw-transition);
}

.lpw-project-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--lpw-shadow);
  border-color:rgba(159,53,165,.12);
}

.lpw-project-image{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#ececf1;
}

.lpw-project-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.lpw-project-card:hover .lpw-project-image img{
  transform:scale(1.04);
}

.lpw-project-content{
  padding:20px 18px;
}

.lpw-project-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.3px;
  text-transform:uppercase;
  color:var(--lpw-purple);
}

.lpw-project-content h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--lpw-text);
}

.lpw-project-content p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.7;
  color:var(--lpw-text-soft);
}

.lpw-project-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  color:var(--lpw-purple-dark);
}

.lpw-project-link:after{
  content:"→";
  transition:transform .24s ease;
}

.lpw-project-card:hover .lpw-project-link:after{
  transform:translateX(3px);
}

/* FEATURED SECTION */

.lpw-featured-section{
  background:#fff;
  padding-top:54px;
  padding-bottom:60px;
}

.lpw-featured-section-head{
  max-width:860px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:24px;
}

.lpw-featured-section-title{
  margin:0 0 10px;
  font-size:clamp(40px,4.5vw,68px);
  line-height:1.02;
  letter-spacing:.02em;
  color:var(--lpw-text);
}

.lpw-featured-section-copy{
  margin:0 auto;
  max-width:720px;
  font-size:17px;
  line-height:1.72;
  color:var(--lpw-text-soft);
}

.lpw-featured{
  background:transparent;
  padding:0;
}

.lpw-featured-wrap{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.lpw-featured-card{
  padding:22px;
  border-radius:22px;
  background:linear-gradient(180deg, #fff, #fbfbfd);
  border:1px solid rgba(18,19,25,.08);
  box-shadow:var(--lpw-shadow-sm);
  transition:var(--lpw-transition);
}

.lpw-featured-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--lpw-shadow);
  border-color:rgba(159,53,165,.12);
}

.lpw-featured-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.3px;
  text-transform:uppercase;
  color:var(--lpw-purple);
}

.lpw-featured-card h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--lpw-text);
}

.lpw-featured-card p{
  margin:0;
  font-size:15px;
  line-height:1.68;
  color:var(--lpw-text-soft);
}

/* FAQ */

.lpw-faq{
  background:linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  padding-top:54px;
  padding-bottom:60px;
}

.lpw-faq-head{
  max-width:860px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:24px;
}

.lpw-faq-head h2{
  margin:0 0 10px;
  font-size:clamp(40px,4.5vw,68px);
  line-height:1.02;
  letter-spacing:.02em;
  color:var(--lpw-text);
}

.lpw-faq-list{
  max-width:920px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

.lpw-faq-item{
  border-radius:22px;
  background:linear-gradient(180deg, #fff, #fbfbfd);
  border:1px solid rgba(18,19,25,.08);
  box-shadow:var(--lpw-shadow-sm);
  overflow:hidden;
}

.lpw-faq-item h3{
  margin:0;
}

.lpw-faq-question{
  position:relative;
  width:100%;
  display:block;
  text-align:left;
  padding:22px 64px 22px 22px;
  border:none;
  background:transparent;
  color:var(--lpw-text);
  font-size:18px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:-.02em;
  cursor:pointer;
  transition:background-color .24s ease, color .24s ease;
}

.lpw-faq-question:hover{
  background:rgba(159,53,165,.03);
}

.lpw-faq-question::after{
  content:"+";
  position:absolute;
  top:50%;
  right:22px;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
  color:var(--lpw-purple-dark);
  background:rgba(159,53,165,.08);
  transition:transform .24s ease, background-color .24s ease, color .24s ease;
}

.lpw-faq-question.is-open::after{
  content:"−";
}

.lpw-faq-answer{
  padding:0 22px 22px;
}

.lpw-faq-answer p{
  margin:0;
  font-size:15px;
  line-height:1.78;
  color:var(--lpw-text-soft);
}

/* FINAL CTA */

.lpw-final-cta{
  background:#fff;
  color:var(--lpw-text);
  padding-top:44px;
  padding-bottom:68px;
}

.lpw-final-cta-wrap{
  position:relative;
  max-width:980px;
  margin:0 auto;
  text-align:center;
  padding:40px 28px;
  border-radius:26px;
  background:linear-gradient(180deg, #fff, #fafafd);
  border:1px solid rgba(18,19,25,.06);
  box-shadow:var(--lpw-shadow);
  overflow:hidden;
}

.lpw-final-cta-wrap:before{
  content:"";
  position:absolute;
  top:-120px;
  left:-80px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(159,53,165,.08), transparent 72%);
}

.lpw-final-cta-wrap:after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:-110px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(159,53,165,.08), transparent 72%);
}

.lpw-final-cta > .lpw-container > .lpw-final-cta-wrap > *{
  position:relative;
  z-index:1;
}

.lpw-final-cta .lpw-cta-label{
  background:#fff;
  border:1px solid rgba(159,53,165,.12);
  color:var(--lpw-purple);
}

.lpw-final-cta h2{
  margin:0 0 12px;
  font-size:clamp(42px,4.8vw,72px);
  line-height:1.03;
  letter-spacing:.02em;
  color:var(--lpw-text);
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.lpw-final-cta p{
  margin:0 auto 22px;
  max-width:700px;
  font-size:18px;
  line-height:1.72;
  color:var(--lpw-text-soft);
}

.lpw-final-cta-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* FOOTER */

.lpw-footer{
  position:relative;
  background:
    radial-gradient(circle at 18% 10%, rgba(159,53,165,.14), transparent 22%),
    linear-gradient(180deg, #111218 0%, #0b0c11 100%);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.lpw-footer:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent 28%);
  pointer-events:none;
}

.lpw-footer-top{
  padding:36px 0 24px;
}

.lpw-footer-grid{
  display:grid;
  grid-template-columns:1.15fr .9fr .9fr;
  gap:28px;
  align-items:start;
}

.lpw-footer-brand h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:#fff;
}

.lpw-footer-brand p{
  margin:0;
  max-width:390px;
  font-size:15px;
  line-height:1.72;
  color:rgba(255,255,255,.74);
}

.lpw-footer-title{
  margin:0 0 10px;
  font-size:13px;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:#fff;
}

.lpw-footer-links,
.lpw-footer-contact{
  display:grid;
  gap:6px;
}

.lpw-footer-links a,
.lpw-footer-contact a,
.lpw-footer-contact span{
  color:rgba(255,255,255,.74);
  font-size:15px;
  line-height:1.68;
  transition:color .24s ease;
}

.lpw-footer-links a:hover,
.lpw-footer-contact a:hover{
  color:#fff;
}

.lpw-footer-social{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.lpw-footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:#fff;
  transition:var(--lpw-transition);
}

.lpw-footer-social svg{
  width:18px;
  height:18px;
}

.lpw-footer-social a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.18);
}

.lpw-footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0 20px;
}

.lpw-footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.lpw-footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.60);
  font-size:14px;
  line-height:1.6;
}

/* COOKIE BANNER */

.lpw-cookie-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:9999;
  display:none;
  justify-content:center;
  pointer-events:none;
}

.lpw-cookie-banner.is-visible{
  display:flex;
}

.lpw-cookie-banner-inner{
  width:100%;
  max-width:1120px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  padding:20px 22px;
  border-radius:24px;
  background:rgba(12,12,16,.94);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  pointer-events:auto;
}

.lpw-cookie-copy strong{
  display:block;
  margin-bottom:6px;
  font-size:17px;
  line-height:1.2;
  color:#fff;
}

.lpw-cookie-copy p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

.lpw-cookie-copy a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
}

.lpw-cookie-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.lpw-btn-cookie-decline{
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  background:rgba(255,255,255,.06);
}

.lpw-btn-cookie-decline:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.10);
}

.lpw-btn-cookie-accept{
  background:linear-gradient(135deg,var(--lpw-purple-soft),var(--lpw-purple),var(--lpw-purple-dark));
  color:#fff;
  box-shadow:var(--lpw-shadow-purple);
}

.lpw-btn-cookie-accept:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 48px rgba(111,29,118,.24);
}

/* REVEAL */

.lpw-reveal{
  opacity:1;
  transform:translateY(0);
  transition:opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}

html.js .lpw-reveal{
  opacity:0;
  transform:translateY(20px);
}

html.js .lpw-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* FOCUS */

.lpw-homepage a:focus-visible,
.lpw-homepage button:focus-visible{
  outline:2px solid rgba(159,53,165,.72);
  outline-offset:3px;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .lpw-overview,
  .lpw-projects,
  .lpw-featured-section,
  .lpw-faq,
  .lpw-final-cta{
    padding:52px 0;
  }

  .lpw-overview{
    padding-top:48px;
    padding-bottom:28px;
  }

  .lpw-hero-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .lpw-overview-shell{
    grid-template-columns:1fr;
    gap:16px;
  }

  .lpw-overview-cards,
  .lpw-featured-wrap,
  .lpw-projects-grid{
    grid-template-columns:1fr 1fr;
  }

  .lpw-footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .lpw-footer-brand{
    grid-column:1 / -1;
  }

  .lpw-hero-inner{
    padding:164px 30px 74px;
  }

  .lpw-topbar-inner{
    padding:14px 20px 0;
  }

  .lpw-navbar{
    grid-template-columns:1fr auto;
    gap:16px;
  }

  .lpw-brand-block{
    min-width:0;
  }

  .lpw-logo{
    height:92px;
    padding:8px 16px;
  }

  .lpw-logo img{
    height:100%;
    max-height:100%;
  }

  .lpw-menu-toggle{
    display:flex;
  }

  .lpw-menu,
  .lpw-nav-right{
    display:none;
  }

  .lpw-navbar.menu-open{
    display:flex;
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .lpw-navbar.menu-open .lpw-brand-block{
    flex:1 1 auto;
  }

  .lpw-navbar.menu-open .lpw-menu{
    display:flex;
    flex:0 0 100%;
    width:100%;
    flex-direction:column;
    gap:14px;
    padding:18px 0 8px;
    order:4;
    align-items:stretch;
    justify-content:center;
    text-align:center;
  }

  .lpw-navbar.menu-open .lpw-menu a{
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;
    padding:10px 0;
    font-size:16px;
    text-align:center;
    margin:0 auto;
  }

  .lpw-navbar.menu-open .lpw-menu a:after{
    display:none;
  }

  .lpw-navbar.menu-open .lpw-nav-right{
    display:flex;
    flex:0 0 100%;
    width:100%;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:8px 0 4px;
    order:5;
    text-align:center;
  }

  .lpw-navbar.menu-open .lpw-nav-social{
    margin-bottom:4px;
    justify-content:center;
  }

  .lpw-hero-card{
    max-width:100%;
    margin-left:0;
  }

  .lpw-overview-heading .is-soft{
    font-size:clamp(17px,1.7vw,24px);
    line-height:1.12;
  }
}

@media(max-width:767px){
  .lpw-container{
    padding:0 20px;
  }

  .lpw-hero-inner{
    padding:148px 20px 62px;
  }

  .lpw-topbar-inner{
    padding:12px 16px 0;
  }

  .lpw-navbar{
    padding:10px 12px;
    border-radius:18px;
  }

  .lpw-logo{
    height:82px;
    padding:8px 14px;
    border-radius:16px;
  }

  .lpw-logo img{
    height:100%;
    max-height:100%;
  }

  .lpw-hero h1{
    font-size:44px;
    max-width:500px;
  }

  .lpw-hero h1 span{
    white-space:normal;
  }

  .lpw-hero p{
    font-size:17px;
    line-height:1.66;
  }

  .lpw-clients-list{
    font-size:17px;
    gap:10px;
  }

  .lpw-clients-list span:not(:last-child)::after{
    margin-left:10px;
  }

  .lpw-hero-card{
    padding:24px 22px;
    border-radius:22px;
  }

  .lpw-overview{
    padding-top:42px;
    padding-bottom:24px;
  }

  .lpw-overview-cards,
  .lpw-featured-wrap,
  .lpw-projects-grid,
  .lpw-footer-grid{
    grid-template-columns:1fr;
  }

  .lpw-overview-heading .is-main,
  .lpw-projects-title,
  .lpw-featured-section-title,
  .lpw-faq-head h2,
  .lpw-final-cta h2{
    font-size:42px;
  }

  .lpw-overview-heading .is-soft{
    font-size:20px;
    line-height:1.15;
    margin-top:8px;
  }

  .lpw-overview-intro,
  .lpw-projects-copy,
  .lpw-featured-section-copy,
  .lpw-final-cta p{
    font-size:17px;
  }

  .lpw-overview-intro-card{
    padding:24px 22px;
    border-radius:22px;
  }

  .lpw-overview-card,
  .lpw-project-card,
  .lpw-featured-card,
  .lpw-faq-item{
    border-radius:22px;
  }

  .lpw-overview-card,
  .lpw-project-content,
  .lpw-featured-card{
    padding:22px 20px;
  }

  .lpw-overview-card h3,
  .lpw-project-content h3,
  .lpw-featured-card h3{
    font-size:24px;
  }

  .lpw-faq-question{
    padding:20px 56px 20px 20px;
    font-size:17px;
  }

  .lpw-faq-question::after{
    right:18px;
    width:28px;
    height:28px;
    font-size:20px;
  }

  .lpw-faq-answer{
    padding:0 20px 20px;
  }

  .lpw-final-cta-wrap{
    padding:34px 22px;
    border-radius:24px;
  }

  .lpw-footer-top{
    padding:30px 0 24px;
  }

  .lpw-footer-bottom-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .lpw-cookie-banner{
    left:16px;
    right:16px;
    bottom:16px;
  }

  .lpw-cookie-banner-inner{
    grid-template-columns:1fr;
    gap:16px;
    padding:18px;
    border-radius:20px;
  }

  .lpw-cookie-actions{
    justify-content:stretch;
  }

  .lpw-cookie-actions .lpw-btn{
    width:100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .lpw-homepage *,
  .lpw-homepage *:before,
  .lpw-homepage *:after{
    transition:none !important;
    animation:none !important;
    scroll-behavior:auto !important;
  }
}