html,
body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

body{
  background:#fff;
}

.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;
}

.lpw-container{
  max-width:1240px;
  margin:auto;
  padding:0 24px;
}

/* TEXT LINKS - REMOVE DEFAULT BLUE WITHOUT AFFECTING NAV/BUTTON LINKS */

.lpw-homepage p a,
.lpw-homepage li a,
.lpw-homepage .lpw-overview-card a,
.lpw-homepage .lpw-overview-intro-card a,
.lpw-homepage .lpw-contact-method a,
.lpw-homepage .lpw-form-note a,
.lpw-homepage .lpw-footer-links a,
.lpw-homepage .lpw-footer-contact a{
  color:inherit;
  text-decoration:none;
  transition:color .24s ease, opacity .24s ease;
}

.lpw-homepage p a:hover,
.lpw-homepage li a:hover,
.lpw-homepage .lpw-overview-card a:hover,
.lpw-homepage .lpw-overview-intro-card a:hover,
.lpw-homepage .lpw-contact-method a:hover,
.lpw-homepage .lpw-form-note a:hover,
.lpw-homepage .lpw-footer-links a:hover,
.lpw-homepage .lpw-footer-contact a:hover{
  opacity:.78;
}

/* TYPE */

.lpw-hero h1,
.lpw-section-title,
.lpw-cta-title{
  font-family:var(--lpw-font-heading);
  font-weight:400;
  text-transform:uppercase;
}

.lpw-hero-card h2,
.lpw-contact-panel h3,
.lpw-contact-form-card h2,
.lpw-footer-brand h2,
.lpw-cta-card h2{
  font-family:var(--lpw-font-body);
  font-weight:800;
}

.lpw-eyebrow,
.lpw-section-label,
.lpw-contact-kicker,
.lpw-footer-title,
.lpw-menu a,
.lpw-btn,
.lpw-nav-phone,
.lpw-form-label,
.lpw-mini-kicker{
  font-family:var(--lpw-font-body);
}

/* NAVBAR - MATCH INDEX PAGE */

.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;
  min-height:108px;
  padding:12px 28px;
  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:84px;
  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;
  line-height:1.2;
  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;
  line-height:1.2;
}

/* 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:94vh;
  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:176px 36px 96px;
}

.lpw-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.06fr) minmax(390px,520px);
  gap:52px;
  align-items:center;
}

.lpw-hero-left{
  max-width:820px;
}

.lpw-eyebrow{
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.2px;
  line-height:1.2;
  margin-bottom:22px;
  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(48px,5vw,78px);
  line-height:1.01;
  margin:0 0 20px;
  letter-spacing:.015em;
  max-width:860px;
}

.lpw-hero h1 span{
  display:block;
}

.lpw-hero h1 span + span{
  margin-top:6px;
}

.lpw-hero p{
  color:rgba(255,255,255,.88);
  font-size:18px;
  margin:0 0 28px;
  max-width:700px;
  line-height:1.72;
  letter-spacing:-.01em;
}

.lpw-hero-actions{
  display:flex;
  gap:14px;
  margin-bottom:26px;
  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;
  line-height:1.2;
  font-weight:600;
  letter-spacing:-.01em;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.lpw-clients{
  margin-top:34px;
  max-width:820px;
  padding-top:18px;
  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;
  line-height:1.2;
}

.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:30px;
  border-radius:30px;
  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:520px;
  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,
.lpw-hero-card p,
.lpw-hero-list,
.lpw-hero-card-actions{
  position:relative;
  z-index:1;
}

.lpw-hero-card h2{
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.03em;
  margin:0 0 10px;
  color:#fff;
}

.lpw-hero-card p{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.68;
  color:rgba(255,255,255,.84);
}

.lpw-hero-list{
  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);
}

.lpw-hero-card-actions{
  margin-top:18px;
}

.lpw-hero-card-actions .lpw-btn{
  width:100%;
}

/* CONTACT SECTION */

.lpw-contact{
  background:linear-gradient(180deg,#fff 0%,#fbfbfd 100%);
  padding:86px 0 70px;
}

.lpw-section-head{
  max-width:900px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:36px;
}

.lpw-section-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:16px;
  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);
  line-height:1.2;
}

.lpw-section-label:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--lpw-purple),var(--lpw-purple-dark));
}

.lpw-section-label-invert{
  margin-bottom:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.12);
  box-shadow:none;
}

.lpw-section-label-invert:before{
  background:linear-gradient(135deg,#fff,var(--lpw-purple-soft));
}

.lpw-section-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:880px;
  margin-left:auto;
  margin-right:auto;
}

.lpw-section-copy{
  margin:0 auto;
  max-width:780px;
  font-size:17px;
  line-height:1.72;
  color:var(--lpw-text-soft);
}

.lpw-contact-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:24px;
  align-items:start;
}

.lpw-contact-panel,
.lpw-contact-form-card{
  background:linear-gradient(180deg, #fff, #fbfbfd);
  border-radius:28px;
  border:1px solid rgba(18,19,25,.07);
  box-shadow:var(--lpw-shadow-sm);
}

.lpw-contact-panel{
  padding:30px;
  display:grid;
  gap:20px;
}

.lpw-contact-kicker,
.lpw-mini-kicker{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.3px;
  text-transform:uppercase;
  color:var(--lpw-purple);
  line-height:1.2;
  margin-bottom:8px;
}

.lpw-contact-panel h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--lpw-text);
}

.lpw-contact-panel p{
  margin:0;
  font-size:15px;
  line-height:1.72;
  color:var(--lpw-text-soft);
}

.lpw-contact-methods{
  display:grid;
  gap:14px;
}

.lpw-contact-method{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(18,19,25,.06);
  box-shadow:var(--lpw-shadow-xs);
}

.lpw-contact-icon{
  flex:0 0 46px;
  width:46px;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,var(--lpw-purple-soft),var(--lpw-purple),var(--lpw-purple-dark));
  box-shadow:var(--lpw-shadow-purple);
}

.lpw-contact-icon svg{
  width:20px;
  height:20px;
}

.lpw-contact-method strong{
  display:block;
  margin:0 0 4px;
  font-size:16px;
  line-height:1.3;
  color:var(--lpw-text);
}

.lpw-contact-method span,
.lpw-contact-method a{
  font-size:15px;
  line-height:1.7;
  color:var(--lpw-text-soft);
}

.lpw-contact-method a:hover{
  color:var(--lpw-purple-dark);
}

.lpw-contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.lpw-contact-list li{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(159,53,165,.05);
  border:1px solid rgba(159,53,165,.08);
  font-size:15px;
  line-height:1.58;
  color:var(--lpw-text-soft);
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.lpw-contact-list li:before{
  content:"";
  flex:0 0 8px;
  width:8px;
  height:8px;
  margin-top:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--lpw-purple),var(--lpw-purple-dark));
}

.lpw-contact-form-card{
  padding:32px;
  position:relative;
  overflow:hidden;
}

.lpw-contact-form-card:before{
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(159,53,165,.10), transparent 68%);
  pointer-events:none;
}

.lpw-contact-form-card > *{
  position:relative;
  z-index:1;
}

.lpw-contact-form-card h2{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--lpw-text);
}

.lpw-contact-form-card p{
  margin:0 0 20px;
  font-size:15px;
  line-height:1.72;
  color:var(--lpw-text-soft);
}

.lpw-form{
  display:grid;
  gap:16px;
}

.lpw-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.lpw-form-group{
  display:grid;
  gap:8px;
}

.lpw-form-group-full{
  grid-column:1 / -1;
}

.lpw-form-label{
  font-size:13px;
  font-weight:700;
  letter-spacing:.01em;
  color:var(--lpw-text);
}

.lpw-form-input,
.lpw-form-select,
.lpw-form-textarea{
  width:100%;
  border:1px solid rgba(18,19,25,.10);
  background:#fff;
  color:var(--lpw-text);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  font-size:15px;
  line-height:1.4;
  outline:none;
  box-shadow:var(--lpw-shadow-xs);
  transition:border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.lpw-form-input::placeholder,
.lpw-form-textarea::placeholder{
  color:var(--lpw-text-muted);
}

.lpw-form-input:focus,
.lpw-form-select:focus,
.lpw-form-textarea:focus{
  border-color:rgba(159,53,165,.40);
  box-shadow:0 0 0 4px rgba(159,53,165,.10);
}

.lpw-form-textarea{
  min-height:180px;
  resize:vertical;
}

.lpw-form-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  padding-top:4px;
}

.lpw-form-note{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:var(--lpw-text-muted);
}

.lpw-form-status{
  display:none;
  margin-top:6px;
  padding:14px 16px;
  border-radius:16px;
  font-size:14px;
  line-height:1.6;
  font-weight:600;
}

.lpw-form-status.is-visible{
  display:block;
}

.lpw-form-status.is-success{
  background:rgba(38,181,101,.10);
  color:#136a3b;
  border:1px solid rgba(38,181,101,.20);
}

.lpw-form-status.is-error{
  background:rgba(210,57,57,.08);
  color:#8f2222;
  border:1px solid rgba(210,57,57,.16);
}

.lpw-form-submit.is-loading{
  opacity:.75;
  pointer-events:none;
}

/* CTA SECTION */

.lpw-cta{
  padding:0 0 92px;
  background:linear-gradient(180deg,#fbfbfd 0%,#ffffff 100%);
}

.lpw-cta-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(135deg, #16131a 0%, #241327 44%, #6f1d76 100%);
  color:#fff;
  padding:38px;
  box-shadow:0 26px 60px rgba(20,14,24,.20);
}

.lpw-cta-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 84% 24%, rgba(255,255,255,.12), transparent 16%),
    radial-gradient(circle at 72% 78%, rgba(255,255,255,.08), transparent 18%);
  pointer-events:none;
}

.lpw-cta-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
}

.lpw-cta-card h2{
  margin:0 0 10px;
  font-size:36px;
  line-height:1.02;
  letter-spacing:-.03em;
  color:#fff;
}

.lpw-cta-card p{
  margin:0;
  max-width:760px;
  font-size:16px;
  line-height:1.74;
  color:rgba(255,255,255,.84);
}

.lpw-cta-actions{
  display:flex;
  gap:12px;
  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:42px 0 28px;
}

.lpw-footer-grid{
  display:grid;
  grid-template-columns:1.15fr .9fr .9fr;
  gap:30px;
  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;
  line-height:1.2;
}

.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;
}

/* 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,
.lpw-homepage input:focus-visible,
.lpw-homepage select:focus-visible,
.lpw-homepage textarea:focus-visible{
  outline:2px solid rgba(159,53,165,.72);
  outline-offset:3px;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .lpw-contact{
    padding:72px 0 62px;
  }

  .lpw-cta{
    padding:0 0 82px;
  }

  .lpw-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .lpw-contact-grid{
    grid-template-columns:1fr;
  }

  .lpw-cta-grid{
    grid-template-columns:1fr;
    align-items:start;
  }

  .lpw-footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .lpw-footer-brand{
    grid-column:1 / -1;
  }

  .lpw-hero-inner{
    padding:156px 30px 84px;
  }

  .lpw-topbar-inner{
    padding:14px 20px 0;
  }

  .lpw-navbar{
    grid-template-columns:1fr auto;
    gap:16px;
  }

  .lpw-brand-block{
    min-width:0;
  }

  .lpw-logo{
    min-height:88px;
    padding:10px 20px;
  }

  .lpw-logo img{
    height:68px;
  }

  .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;
  }
}

@media(max-width:767px){
  .lpw-container{
    padding:0 20px;
  }

  .lpw-hero-inner{
    padding:142px 20px 70px;
  }

  .lpw-topbar-inner{
    padding:12px 16px 0;
  }

  .lpw-navbar{
    padding:10px 12px;
    border-radius:18px;
  }

  .lpw-logo{
    min-height:78px;
    padding:10px 18px;
    border-radius:16px;
  }

  .lpw-logo img{
    height:58px;
  }

  .lpw-hero h1{
    font-size:44px;
    max-width:500px;
  }

  .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-section-title{
    font-size:42px;
  }

  .lpw-section-copy{
    font-size:17px;
  }

  .lpw-contact-panel,
  .lpw-contact-form-card,
  .lpw-cta-card{
    border-radius:22px;
  }

  .lpw-contact-panel,
  .lpw-contact-form-card,
  .lpw-cta-card{
    padding:22px 20px;
  }

  .lpw-form-grid{
    grid-template-columns:1fr;
  }

  .lpw-hero-actions,
  .lpw-cta-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .lpw-hero-actions .lpw-btn,
  .lpw-form-actions .lpw-btn,
  .lpw-cta-actions .lpw-btn{
    width:100%;
  }

  .lpw-footer-top{
    padding:30px 0 24px;
  }

  .lpw-footer-bottom-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .lpw-cta-card h2{
    font-size:30px;
  }
}

@media (prefers-reduced-motion: reduce){
  .lpw-homepage *,
  .lpw-homepage *:before,
  .lpw-homepage *:after{
    transition:none !important;
    animation:none !important;
    scroll-behavior:auto !important;
  }
}