
@import url('https://fonts.googleapis.com/css2?family=Anton:wght@400&display=swap');
:root{
  --ll-space-xs:.4rem;--ll-space-s:.8rem;--ll-space:1.2rem;--ll-space-l:2rem;
  --ll-radius:50px;--ll-shadow:0 6px 24px rgba(0,0,0,.08);--ll-transition:180ms ease;
  --ll-heading-font:'Anton', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --ll-page-pad:clamp(16px,3vw,28px);
  /* Fluid container widths: widen on ultrawide monitors while preserving comfortable caps */
  --ll-section-max:clamp(1200px, 92vw, 1680px);
  /* Narrower inner content for readability on wide screens */
  --ll-content-max-base:clamp(
    280px,
    calc(92vw - var(--ll-page-pad)*2),
    calc(1320px - var(--ll-page-pad)*2)
  );
  --ll-content-max:var(--ll-content-max-base);
  --ll-bubble-pad:clamp(18px,3vw,28px);
  --ll-bg:#0c0f17;--ll-surface:#121828;--ll-text:#edf2ff;--ll-muted:#97a2c7;--ll-accent:#6f8cff;--ll-accent-2:#1de9c3;--ll-border:rgba(255,255,255,.18);--ll-hover-tint:rgba(255,255,255,.08);
}

/* Super-ultrawide: gently expand inner content to 150% */
@media (min-width: 2000px){
  :root{ --ll-content-max: calc(var(--ll-content-max-base) * 1.5); }
}



body.ll-theme--midnight{--ll-bg:#0c0f17;--ll-surface:#121828;--ll-text:#edf2ff;--ll-muted:#97a2c7;--ll-accent:#6f8cff;--ll-accent-2:#1de9c3;--ll-border:rgba(255,255,255,.18);--ll-hover-tint:rgba(255,255,255,.08);} 
body.ll-theme--light{--ll-bg:#f6f8fc;--ll-surface:#ffffff;--ll-text:#0d1022;--ll-muted:#5f6787;--ll-accent:#5570ff;--ll-accent-2:#0eb7a6;--ll-border:rgba(0,0,0,.16);--ll-hover-tint:rgba(0,0,0,.06);} 
body.ll-theme--neon{--ll-bg:#07090f;--ll-surface:#0d1324;--ll-text:#e8f0ff;--ll-muted:#8ea1d1;--ll-accent:#00e5ff;--ll-accent-2:#ff7ab6;--ll-border:rgba(255,255,255,.18);--ll-hover-tint:rgba(255,255,255,.08);} 
/* Bone theme */
body.ll-theme--bone{--ll-bg:#e9e8e4;--ll-surface:#ffffff;--ll-text:#0b0b0e;--ll-muted:#686a6e;--ll-accent:#111111;--ll-accent-2:#4a4a4a;--ll-border:rgba(0,0,0,.16);--ll-hover-tint:rgba(0,0,0,.06);} 

.ll-landing{background:var(--ll-bg) !important;}
.ll-section{position:relative;margin:0 auto;width:100%;max-width:none;display:flow-root;
  background:var(--ll-bg);transition:transform var(--ll-transition),box-shadow var(--ll-transition),opacity var(--ll-transition);opacity:.98;color:var(--ll-text);}
/* Reset font inheritance to prevent Elementor interference */
.ll-section *{font-family:inherit;}
.ll-section .ll-title,
.ll-section .ll-word{font-family:var(--ll-heading-font) !important;font-weight:400 !important;} 
.ll-section{overflow:hidden;}
.ll-container{max-width:var(--ll-content-max);margin:0 auto;width:100%;}
.ll-surface {
  position: relative;
  display: flow-root;
  padding: var(--ll-bubble-pad);
  
  box-sizing: border-box;
  background: none;
  border-radius: var(--ll-r-tl, var(--ll-block-radius,var(--ll-radius))) 
                 var(--ll-r-tr, var(--ll-block-radius,var(--ll-radius))) 
                 var(--ll-r-br, var(--ll-block-radius,var(--ll-radius))) 
                 var(--ll-r-bl, var(--ll-block-radius,var(--ll-radius)));
  box-shadow: none;
}
.ll-surface{z-index:1;}
@media (max-width:640px){
  .ll-surface{ padding:20px; }
  :root{--ll-radius:24px;}
}

/* Reset to normal flow width, but isolate margins to prevent collapse */
.ll-widesurface{position:relative;display:flow-root;}
.ll-widesurface{z-index:1;}
/* Scroll zoom on widesurface */
.ll-widesurface{transform:scale(var(--ll-zoom,1));transform-origin:center center;will-change:transform;}
/* Section background layer (color/image/video/iframe) */
.ll-bg-layer{position:absolute;inset:0;z-index:0;background:transparent;pointer-events:none;
  transform:translate3d(0,var(--ll-parallax-offset,0px),0) scale(var(--ll-parallax-scale,1.2));
  transform-origin:center center;will-change:transform;}
.ll-bg-layer .ll-bg-video{width:100%;height:100%;object-fit:cover;display:block;}
/* YouTube/Vimeo iframes can't use object-fit. Oversize the iframe so its
   internal 16:9 video fills the section on any aspect ratio (portrait
   mobile, square tablet, ultrawide desktop). Center with translate. */
.ll-bg-layer .ll-bg-embed{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:max(100%, calc(100vh * 16 / 9));
  height:max(100%, calc(100vw * 9 / 16));
  border:0;
  pointer-events:none;
}
/* Seamless-loop YouTube bg: stay hidden until the JS API reports PLAYING,
   then fade in. Hides the pre-roll thumbnail + play-button flash. */
.ll-bg-layer .ll-bg-embed[data-seamless-loop="1"]{opacity:0;transition:opacity .5s ease;}
.ll-bg-layer .ll-bg-embed[data-seamless-loop="1"].is-ready{opacity:1;}
/* Disable promotions/transitions when animation is turned off at section level */
.ll-section[data-ll-animate="0"]{transition:none;}
.ll-section[data-ll-animate="0"] .ll-widesurface{will-change:auto;}
.ll-section[data-ll-animate="0"] .ll-bg-layer{will-change:auto;}
/* Visual control modifiers on section to move/disable visuals */
.ll-section.ll-visual-on-wide{background:transparent;}
.ll-section.ll-visual-on-wide > .ll-widesurface{background:var(--ll-surface);box-shadow:var(--ll-shadow);
  border-radius:var(--ll-r-tl, var(--ll-block-radius,var(--ll-radius))) var(--ll-r-tr, var(--ll-block-radius,var(--ll-radius))) var(--ll-r-br, var(--ll-block-radius,var(--ll-radius))) var(--ll-r-bl, var(--ll-block-radius,var(--ll-radius)));}
.ll-section.ll-visual-on-wide > .ll-widesurface > .ll-surface{background:transparent;box-shadow:none;border:none;}
.ll-section.ll-visual-none > .ll-widesurface{background:transparent;box-shadow:none;border:none;}
.ll-section.ll-visual-none > .ll-widesurface > .ll-surface{background:transparent;box-shadow:none;border:none;}
.ll-surface--fullwidth{width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:none;} 
/* New single-class width modes on section */
.ll-section.ll-surfacefullwidth-style{background:transparent;}
.ll-section.ll-surfacefullwidth-style > .ll-widesurface{background:var(--ll-surface);box-shadow:var(--ll-shadow);
  border-radius:var(--ll-r-tl, var(--ll-block-radius,var(--ll-radius))) var(--ll-r-tr, var(--ll-block-radius,var(--ll-radius))) var(--ll-r-br, var(--ll-block-radius,var(--ll-radius))) var(--ll-r-bl, var(--ll-block-radius,var(--ll-radius)));}
.ll-section.ll-surfacefullwidth-style > .ll-widesurface > .ll-surface{background:transparent;box-shadow:none;border:none;}
.ll-section.ll-surface-style > .ll-widesurface > .ll-surface{background:var(--ll-surface);box-shadow:var(--ll-shadow);
  max-width:calc(var(--ll-content-max) + var(--ll-bubble-pad)*2);margin-left:auto;margin-right:auto;}
.ll-section.ll-surface-style > .ll-widesurface > .ll-surface{margin-top:var(--ll-bubble-pad);margin-bottom:var(--ll-bubble-pad);} 
.ll-section.ll-fullwidth-style{background:transparent;}
.ll-section.ll-fullwidth-style > .ll-widesurface{background:transparent;box-shadow:none;border:none;}
/* When a section declares its own colorMode (ll-mode--light/ll-mode--dark),
   it must paint its own background — otherwise fullwidth-style leaves the
   section transparent and the body's theme bleeds through, producing
   unreadable combinations like near-black text on the midnight body. */
.ll-section.ll-mode--light,
.ll-section.ll-mode--dark{background:var(--ll-bg);}
.ll-section.ll-mode--light > .ll-widesurface,
.ll-section.ll-mode--dark > .ll-widesurface{background:transparent;}
.ll-section.ll-fullwidth-style > .ll-widesurface > .ll-surface{background:transparent;box-shadow:none;border:none;}
.ll-eyebrow{letter-spacing:.08em;text-transform:uppercase;color:var(--ll-muted);font-weight:600;font-size:.9rem;margin-bottom:var(--ll-space-s);}
.ll-title{font-weight:400;line-height:1.06;font-size:60px;margin:0 0 var(--ll-space);opacity:0;} 
@media (max-width:640px){
  .ll-title{font-size:46px;}
  /* Prevent text overflow on mobile */
  .ll-title,
  .ll-lead{
    word-wrap:break-word;
    overflow-wrap:break-word;
    hyphens:auto;
  }
}
.ll-lead{color:var(--ll-muted);font-size:30px;line-height:1.25;margin:0 0 var(--ll-space-l);font-weight:600;}
.ll-lead-row{display:flex;align-items:center;gap:.6rem;flex-wrap:nowrap;margin:0 0 var(--ll-space-l);} 
.ll-lead-row .ll-lead{margin:0;}
.ll-lead-img{height:32px;width:auto;flex:0 0 auto;border-radius:6px;opacity:.95;}
.ll-actions{display:flex;gap:var(--ll-space-s);flex-wrap:wrap;}
.ll-btn{display:inline-flex;align-items:center;justify-content:center;padding:.8rem 1.2rem;border-radius:999px;text-decoration:none;font-weight:700;
  transition:transform var(--ll-transition),box-shadow var(--ll-transition),background var(--ll-transition),filter var(--ll-transition),color var(--ll-transition),border-color var(--ll-transition);} 
.ll-btn--primary{background:var(--ll-accent);color:#fff;}
.ll-btn--ghost{background:var(--ll-hover-tint);color:var(--ll-text);border:1px solid var(--ll-border);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);} 
.ll-btn--primary:hover,.ll-btn--primary:focus{filter:brightness(1.06);transform:translateY(-1px);box-shadow:0 8px 26px rgba(0,0,0,.18);color:#fff;}
.ll-btn--ghost:hover,.ll-btn--ghost:focus{background:var(--ll-hover-tint);border-color:var(--ll-border);color:var(--ll-text);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);} 

/* Subtle shine sweep on primary button */
.ll-btn--primary{position:relative;overflow:hidden;}
.ll-btn--primary::after{content:"";position:absolute;top:0;left:-45%;width:40%;height:100%;pointer-events:none;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.36),transparent);transform:skewX(-20deg) translateX(0);
  transition:transform 420ms ease;}
.ll-btn--primary:hover::after,.ll-btn--primary:focus::after{transform:skewX(-20deg) translateX(260%);} 

@media (prefers-reduced-motion: reduce){
  .ll-btn,.ll-btn--primary::after{transition:none}
}
.ll-btn:active{transform:translateY(1px);}
.ll-grid-2{display:grid;grid-template-columns:1fr;gap:clamp(14px,2.4vw,22px);}
@media (min-width:880px){.ll-grid-2{grid-template-columns:1.12fr .88fr;}}
.ll-grid-3{display:grid;grid-template-columns:1fr;gap:clamp(12px,2vw,18px);}
@media (min-width:900px){.ll-grid-3{grid-template-columns:repeat(3,1fr);}}
.ll-feature{--ll-card-pad:clamp(14px,2.4vw,22px);background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));padding:var(--ll-card-pad);box-shadow:var(--ll-shadow);overflow:hidden;display:flex;flex-direction:column;}
@media (max-width:640px){
  .ll-feature{ --ll-card-pad:28px; padding:var(--ll-card-pad); }
}
.ll-feature h3{margin:0 0 .4rem;font-size:1.4rem;}
.ll-item-img{width:232px;height:232px;object-fit:cover;border-radius:10px;display:block;margin-bottom:.4rem;}
.ll-feature .ll-item-img{width:calc(100% + var(--ll-card-pad) * 2);max-width:none;height:auto;aspect-ratio:16/9;object-fit:cover;display:block;margin:calc(var(--ll-card-pad) * -1) calc(var(--ll-card-pad) * -1) .9rem;border-radius:0;}
.ll-feature p{margin:0;color:var(--ll-muted);}
.ll-feature p:has(+ .ll-feature__cta){margin-bottom:1rem;}
.ll-feature__cta{margin-top:auto;align-self:flex-start;}
.ll-card{background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));padding:clamp(18px,2.6vw,26px);box-shadow:var(--ll-shadow);} 
.ll-card.ll-surface--fullwidth{width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);} 
.ll-quote{font-size:24px;line-height:1.45;}
@media (max-width:640px){
  .ll-quote{font-size:30px;}
}
.ll-quote cite{display:block;margin-top:.8rem;color:var(--ll-muted);font-style:normal;}
/* Testimonials */
.ll-testimonials{display:grid;gap:18px;}
@media(min-width:900px){.ll-testimonials{grid-template-columns:repeat(2,1fr);}}
.ll-testimonial{background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));padding:clamp(18px,2.6vw,26px);box-shadow:var(--ll-shadow);border:1px solid #ffffff14;}
.ll-testimonial__row{display:grid;grid-template-columns:auto 1fr;gap:clamp(12px,2.2vw,16px);align-items:start;}
.ll-testimonial__pic{width:200px;height:200px;border-radius:12px;background:#0b0b0f12 center/cover no-repeat;border:1px solid #ffffff14;}
.ll-testimonial__content{min-width:0;}
.ll-person{margin-top:.4rem;color:var(--ll-muted);font-weight:600;}
.ll-testimonial__logo img{height:18px;opacity:.9;filter:grayscale(1) contrast(1.1);margin-top:.6rem;}
.ll-cta{display:grid;gap:var(--ll-space);background:linear-gradient(135deg,var(--ll-accent),var(--ll-accent-2));color:#001;border-radius:var(--ll-block-radius,var(--ll-radius));
  padding:clamp(18px,3vw,28px);} .ll-cta .ll-title,.ll-cta .ll-lead{color:#001;}
.ll-cta.ll-surface--fullwidth{width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);} 
.ll-media{width:100%;background:transparent;border-radius:var(--ll-block-radius,var(--ll-radius));overflow:hidden;display:grid;place-items:center;
  color:var(--ll-muted);font-size:.95rem;border:1px solid #ffffff11;}
.ll-media img,.ll-media video{width:100%;height:100%;object-fit:cover;display:block;}
.ll-logos{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:clamp(10px,2vw,28px);align-items:center;justify-items:center;opacity:.9;}
.ll-logos img{width:100%;max-width:180px;height:auto;filter:grayscale(1) contrast(1.2) brightness(1.1);opacity:.85;}
/* Hero trusted-by strip keeps the flex-row behaviour regardless of the
   standalone logos-block grid rule above. */
.ll-hero .ll-hero-trusted .ll-logos{display:flex;gap:clamp(16px,3vw,28px);flex-wrap:wrap;align-items:center;justify-items:unset;}
.ll-hero .ll-hero-trusted .ll-logos img{width:auto;max-width:none;height:34px;}
/* Logo treatment variants */
.ll-logos.ll-logos--normal img{filter:none;}
.ll-logos.ll-logos--grayscale img{filter:grayscale(1);}
.ll-logos.ll-logos--black img{filter:brightness(0) saturate(100%);} /* crush to black */
.ll-logos.ll-logos--white img{filter:brightness(0) invert(1);} /* crush to white */
.ll-steps{display:grid;gap:clamp(12px,2vw,18px);}
@media(min-width:900px){.ll-steps{grid-template-columns:repeat(2,1fr);}}
.ll-step{background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));box-shadow:var(--ll-shadow);border:1px solid var(--ll-border);overflow:hidden;isolation:isolate;display:flex;flex-direction:column;gap:0;}
.ll-step__body{padding:clamp(16px,2.4vw,22px);display:flex;gap:clamp(12px,1.6vw,18px);align-items:flex-start;}
.ll-step .ll-n{flex:0 0 auto;font-family:var(--ll-heading-font) !important;font-weight:400 !important;font-size:clamp(2.4rem,4.6vw,3.6rem);line-height:.95;color:var(--ll-accent);letter-spacing:-.02em;min-width:1.6em;}
.ll-step__text{display:flex;flex-direction:column;gap:.35rem;min-width:0;}
.ll-step__title{font-weight:700;color:var(--ll-text);font-size:1.05rem;}
.ll-step__desc{color:var(--ll-muted);}
.ll-step__img{order:-1;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;display:block;}
.ll-pricing{display:grid;gap:18px;}
@media(min-width:900px){.ll-pricing{grid-template-columns:repeat(3,1fr);}}
.ll-price{background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));box-shadow:var(--ll-shadow);border:1px solid var(--ll-border);overflow:hidden;display:flex;flex-direction:column;}
/* Uniform 16:9 plan images so all plans line up visually regardless of source aspect */
.ll-plan-img{width:100%;aspect-ratio:1 / 1;object-fit:cover;display:block;}
.ll-plan-body{padding:22px;display:flex;flex-direction:column;gap:.4rem;}
.ll-price h3{margin:0 0 4px;color:var(--ll-text);}
.ll-price .amt{font-size:2rem;font-weight:800;margin:.2rem 0;color:var(--ll-text);}
/* Pseudo-bullets bypass any theme "list-style:none" reset so the markers
   always render. Uses ::before so the bullet color can be accented. */
.ll-price ul{margin:.6rem 0 0 0;padding:0;list-style:none;color:var(--ll-muted);}
.ll-price ul li{position:relative;padding-left:1.25em;margin:.35rem 0;}
.ll-price ul li::before{content:"•";position:absolute;left:0;top:0;color:var(--ll-accent);font-weight:700;font-size:1.1em;line-height:1.35;}
.ll-gallery{display:grid;gap:10px;grid-template-columns:repeat(2,1fr);}
@media(min-width:900px){.ll-gallery{grid-template-columns:repeat(4,1fr);}}
.ll-gallery a,.ll-gallery img{display:block;border-radius:var(--ll-block-radius,12px);overflow:hidden;}
.ll-faq{display:grid;gap:10px;}
.ll-qa{background:var(--ll-surface);border-radius:var(--ll-block-radius,12px);padding:14px;border:1px solid #ffffff14;}
.ll-q{font-weight:700;cursor:pointer;}
.ll-a{color:var(--ll-muted);margin-top:0;max-height:0;overflow:hidden;opacity:0;transition:max-height var(--ll-transition),opacity var(--ll-transition),margin var(--ll-transition);}
.ll-qa.is-open .ll-a{max-height:600px;margin-top:.5rem;opacity:1;}
.ll-raise{transform:none;opacity:1;}
.ll-raise.is-in{transform:none;opacity:1;}

/* Headings use Impact-like font only within LiveLander blocks */
.ll-title,
.ll-section h1,
.ll-section h2,
.ll-section h3,
.ll-section h4,
.ll-section h5,
.ll-section h6{font-family:var(--ll-heading-font);font-weight:400;}
/* Ensure ll-word elements maintain LiveLander font styling */
.ll-word{font-family:var(--ll-heading-font) !important;font-weight:400 !important;}
/* Ensure editor can't override block heading font */
.editor-styles-wrapper [data-ll-block] .ll-title,
.editor-styles-wrapper [data-ll-block] h1,
.editor-styles-wrapper [data-ll-block] h2,
.editor-styles-wrapper [data-ll-block] h3,
.editor-styles-wrapper [data-ll-block] h4,
.editor-styles-wrapper [data-ll-block] h5,
.editor-styles-wrapper [data-ll-block] h6{font-family:var(--ll-heading-font) !important;font-weight:400;}
/* Ensure headings are visible in the block editor despite front-end reveal default */
.editor-styles-wrapper [data-ll-block] .ll-title{opacity:1 !important;}

/* Hero block */
.ll-hero .ll-title{font-size:80px;}
@media (max-width:640px){
  .ll-hero .ll-title{font-size:44px;}
  /* Ensure hero content doesn't overflow on mobile */
  .ll-hero .ll-container{
    padding-left:var(--ll-page-pad);
    padding-right:var(--ll-page-pad);
  }
  .ll-hero .ll-title,
  .ll-hero .ll-lead{
    word-wrap:break-word;
    overflow-wrap:break-word;
  }
}
@media (max-width:640px){
  .ll-lead{font-size:20px;}
}
@media (max-width:380px){
  .ll-title{font-size:36px;}
  .ll-hero .ll-title{font-size:38px;}
  .ll-lead{font-size:18px;}
}
.ll-hero .ll-media{background:transparent;}
@media (min-width:880px){
  /* Overlay layout: media fills right 50% full height; content flows, with wide heading */
  .ll-hero .ll-grid-2{display:block; position:relative;}
  .ll-hero .ll-grid-2.ll-hero-has-media > :nth-child(2){position:absolute; top:0; right:0; width:50%; height:100%;}
  .ll-hero .ll-grid-2.ll-hero-has-media > :first-child{position:relative; z-index:2;}
  .ll-hero .ll-media{height:100%; aspect-ratio:auto; border:none;}
  .ll-hero .ll-media img,.ll-hero .ll-media video{height:100%; object-fit:cover;}
  /* Title spans ~80% of total width; lead/actions ~50% (only when media present) */
  .ll-hero .ll-grid-2.ll-hero-has-media .ll-title{max-width:60%;}
  .ll-hero .ll-grid-2.ll-hero-has-media .ll-title.ll-title--narrow{max-width:50%;}
  .ll-hero .ll-grid-2.ll-hero-has-media .ll-lead-row,
  .ll-hero .ll-grid-2.ll-hero-has-media .ll-actions{max-width:48%;}
  /* When hero has no media but has a lead image, use 70/30 two-column layout */
  .ll-hero .ll-grid-2.ll-hero-has-leadimg{display:grid;grid-template-columns:7fr 3fr;gap:clamp(14px,2.4vw,22px);align-items:center;}
  .ll-hero .ll-grid-2.ll-hero-has-leadimg .ll-lead-row,
  .ll-hero .ll-grid-2.ll-hero-has-leadimg .ll-actions{max-width:100%;}
  .ll-hero .ll-hero-leadimg img{width:100%;height:auto;border-radius:12px;}
}

/* Hero media placed at container level (sibling of grid) should still overlay right 50% */
@media (min-width:880px){
  .ll-hero.ll-section{ position: relative; }
  .ll-hero.ll-section > .ll-media{ position: absolute; top: 0; right: calc((100vw - var(--ll-content-max)) / 2 + var(--ll-bubble-pad)); height: 100%; width: min(65%, calc((var(--ll-content-max) + var(--ll-bubble-pad)*2) * 0.6)); border: none; display:flex; align-items:center; justify-content:flex-end; z-index:1; overflow:hidden; }
  .ll-hero.ll-section > .ll-widesurface{ position: relative; z-index:2; }
  .ll-hero.ll-section > .ll-media iframe{ height: 100%; width: 100%; }
  .ll-hero.ll-section > .ll-media img,
  .ll-hero.ll-section > .ll-media video{ height: 100%; width: 100%; object-fit: cover; }
}
.ll-actions .ll-btn:empty{display:none;}
/* Scroll hint arrow */
.ll-hero .ll-scroll-hint{position:absolute;left:50%;bottom:22px;transform:translateX(-50%);color:#fff;opacity:.85;pointer-events:none;z-index:3;}
.ll-hero .ll-scroll-hint__icon{display:block;animation:ll-bounce 1.8s infinite ease-in-out;filter:drop-shadow(0 2px 6px rgba(0,0,0,.45));}
/* Back-compat for any old FA icon markup still in post_content */
.ll-hero .ll-scroll-hint i{font-size:22px;display:inline-block;animation:ll-bounce 1.8s infinite ease-in-out;}
@keyframes ll-bounce{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

/* Full-bleed video hero: dark gradient scrim over the background video so
   the headline and CTA stay legible on any frame. Only applies when the
   hero actually has a background layer (no background = no scrim). */
.ll-hero .ll-bg-layer::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(6,10,20,.18) 0%, rgba(6,10,20,.28) 55%, rgba(6,10,20,.39) 100%);
  pointer-events:none;
  z-index:2;
}
/* Safety: when the hero renders over a background video, force light text
   regardless of the section's colorMode. Avoids "light mode on video"
   rendering near-black text over a bright frame. */
.ll-hero:has(.ll-bg-layer) .ll-title,
.ll-hero:has(.ll-bg-layer) .ll-lead,
.ll-hero:has(.ll-bg-layer) .ll-eyebrow,
.ll-hero:has(.ll-bg-layer) .ll-scroll-hint{color:#fff;}
.ll-hero:has(.ll-bg-layer) .ll-lead{color:rgba(255,255,255,.85);}

/* Ensure hero never shows the tiny inline lead image next to text */
.ll-hero .ll-lead-row .ll-lead-img{display:none !important;}

/* Generic split layout used across blocks (50/50 with mobile stacking) */
.ll-split{display:flex;align-items:flex-start;gap:var(--ll-split-gap,2rem);flex-wrap:wrap;}
.ll-split--5050 > *{flex:0 0 calc(50% - (var(--ll-split-gap,2rem) / 2));}
@media (max-width:880px){
  .ll-split--5050 > *{flex:0 0 100%;}
}
.ll-split .ll-lead-img{width:100%;height:auto;display:block;border-radius:12px;}
.ll-split .ll-lead-img video{width:100%;height:auto;display:block;border-radius:12px;}

/* Triplet block: optional media+heading+text, keeps alignment even when parts are missing */
.ll-triplet{display:grid;gap:clamp(12px,2vw,18px);grid-template-columns:1fr;}
@media(min-width:900px){.ll-triplet{grid-template-columns:repeat(3,1fr);}}
.ll-triplet__item{display:grid;gap:.6rem;background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));
  padding:clamp(14px,2.4vw,22px);box-shadow:var(--ll-shadow);} 
.ll-triplet__media{aspect-ratio:16/9;background:transparent;border-radius:inherit;overflow:hidden;}
.ll-triplet__title{margin:0;font-weight:800;}
.ll-triplet__text{margin:0;color:var(--ll-muted);} 

/* Per-block color mode overrides */
.ll-mode--light{--ll-bg:#f6f8fc;--ll-surface:#ffffff;--ll-text:#0d1022;--ll-muted:#5f6787;--ll-accent:#5570ff;--ll-accent-2:#0eb7a6;--ll-border:rgba(0,0,0,.16);--ll-hover-tint:rgba(0,0,0,.06);} 
.ll-mode--dark{--ll-bg:#0c0f17;--ll-surface:#121828;--ll-text:#edf2ff;--ll-muted:#97a2c7;--ll-accent:#6f8cff;--ll-accent-2:#1de9c3;--ll-border:rgba(255,255,255,.18);--ll-hover-tint:rgba(255,255,255,.08);} 

/* Block utilities */
.ll-block{--ll-block-radius:0px;}

/* Full-screen height utility */
.ll-section.ll-height--screen{min-height:100vh;min-height:calc(100svh - var(--ll-header-h, 104px));display:grid;align-items:center;}
.ll-section.ll-height--screen .ll-grid-2{align-items:center;}

/* Compact hero variant */
.ll-hero--compact .ll-title{font-size:clamp(24px,3.2vw,44px);} 

/* Editor-only overrides */
.editor-styles-wrapper .ll-landing{ background: transparent; color: inherit; }
.editor-styles-wrapper .ll-section{ background: transparent; }
.editor-styles-wrapper .ll-raise{ opacity:1 !important; transform:none !important; }
.editor-styles-wrapper .ll-media{ background:#0b0b0f12; }
.editor-styles-wrapper .ll-surface{ box-shadow:var(--ll-shadow); }
/* Neutralize full-viewport widths in editor to prevent layout blowouts */
.editor-styles-wrapper .ll-widesurface,
.editor-styles-wrapper .ll-surface--fullwidth,
.editor-styles-wrapper .ll-card.ll-surface--fullwidth,
.editor-styles-wrapper .ll-cta.ll-surface--fullwidth{
  width:100% !important;
  max-width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
}
.editor-styles-wrapper .ll-container{ max-width:100%; }
.editor-styles-wrapper [data-ll-block]{ display:block; }

/* Header (dark mode friendly): logo left, text links center, CTA right */
.ll-header .ll-container{ max-width:var(--ll-content-max); }
.ll-header .ll-surface{padding-top:0; padding-bottom:0;}
.ll-header__row{display:flex;align-items:center;justify-content:space-between;gap:16px;position:relative;height:var(--ll-header-h, 104px);}
@media (max-width:640px){ .ll-header__row{height:var(--ll-header-h-mobile, 72px);} }
.ll-header.ll-section{z-index:1000;overflow:visible;}
.ll-logo{display:inline-flex;align-items:center;gap:8px;color:var(--ll-text);text-decoration:none;font-weight:800;}
.ll-logo--text{color:#000;}
.ll-logo img{height:28px;width:auto;display:block;}
.ll-nav-left{display:flex;align-items:center;gap:8px;}
.ll-nav-right{display:flex;align-items:center;gap:8px;flex:0 0 auto;}
.ll-nav-cta{padding:.7rem 1.1rem;border-radius:999px;background:var(--ll-accent);color:#fff;font-weight:700;}
.ll-nav-cta:hover,.ll-nav-cta:focus{filter:brightness(1.08);color:#fff;}

/* ─── Desktop nav (inline links in header) ─────────────────────────────── */
.ll-nav-desktop{display:flex;align-items:center;}
.ll-nav-desktop ul{display:flex;list-style:none;margin:0;padding:0;gap:1.4rem;align-items:center;}
.ll-nav-desktop a{color:var(--ll-text);opacity:.85;text-decoration:none;font-weight:600;transition:opacity var(--ll-transition);}
.ll-nav-desktop a:hover,.ll-nav-desktop a:focus{opacity:1;}

/* ─── Mobile hamburger button (hidden by default, shown on mobile) ─────── */
.ll-menu-btn{display:none;width:40px;height:40px;align-items:center;justify-content:center;padding:0;cursor:pointer;color:var(--ll-text);background:transparent;border:1px solid var(--ll-border);border-radius:10px;align-self:center;-webkit-tap-highlight-color:transparent;}
.ll-menu-btn:hover,.ll-menu-btn:focus{background:var(--ll-hover-tint);}
.ll-menu-btn svg{display:block;color:currentColor;}

/* ─── Mobile menu panel. Positioned by JS via position:fixed +
       getBoundingClientRect — do NOT set position here, let JS own it. ── */
.ll-mobile-menu{list-style:none;margin:0;padding:6px;background:var(--ll-surface);border:1px solid var(--ll-border);border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.3);min-width:220px;}
.ll-mobile-menu[hidden]{display:none !important;}
.ll-mobile-menu ul{list-style:none;margin:0;padding:0;}
.ll-mobile-menu li{display:block;}
.ll-mobile-menu a{display:block;padding:.75rem 1rem;color:var(--ll-text);text-decoration:none;border-radius:8px;font-weight:600;}
.ll-mobile-menu a:hover,.ll-mobile-menu a:focus{background:var(--ll-hover-tint);}

/* ─── Mobile breakpoint: swap inline nav for hamburger ─────────────────── */
@media (max-width:1030px){
  .ll-nav-desktop{display:none;}
  .ll-menu-btn{display:inline-flex;}
  .ll-header__row{gap:8px;}
}

/* Footer (dark) */
.ll-footer__row{display:flex;align-items:center;justify-content:space-between;gap:16px;}
.ll-footer.ll-section{background:var(--ll-bg);} 
.ll-footer-links{list-style:none;margin:0;padding:0;display:flex;gap:18px;align-items:center;}
.ll-footer-links a{color:var(--ll-text);opacity:.85;text-decoration:none;}
.ll-footer .ll-copyright{color:var(--ll-muted);}
@media (max-width:1030px){ .ll-footer .ll-copyright{ display:none; } }

/* Mobile: ensure surface spans full viewport width edge-to-edge but prevent overflow */
@media (max-width:640px){
  .ll-section > .ll-widesurface > .ll-surface{
    width:100vw; max-width:100vw;
    margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
    box-sizing:border-box;
    overflow-x:hidden;
  }
  /* Stronger override for modes that set a max-width on the surface */
  .ll-section.ll-surface-style > .ll-widesurface > .ll-surface,
  .ll-section.ll-surfacefullwidth-style > .ll-widesurface > .ll-surface{
    width:100vw !important; max-width:100vw !important;
    margin-left:calc(50% - 50vw) !important; margin-right:calc(50% - 50vw) !important;
    box-sizing:border-box !important;
    overflow-x:hidden !important;
  }
  /* Ensure content within surfaces doesn't overflow */
  .ll-section .ll-container{
    max-width:100%;
    overflow-x:hidden;
  }
  /* Fix split layout in surfacefullwidth-style sections on mobile */
  .ll-section.ll-surfacefullwidth-style .ll-split{
    flex-direction:column;
  }
  .ll-section.ll-surfacefullwidth-style .ll-split > *{
    flex:0 0 100% !important;
    max-width:100% !important;
  }
  /* Stack all inline 50/50 split layouts (steps, pricing, cta, value-props) on mobile */
  .ll-section .ll-surface div[style*="display:flex"]{
    flex-direction:column !important;
    gap:1rem !important;
  }
  .ll-section .ll-surface div[style*="flex:0 0 50%"]{
    flex:0 0 100% !important;
    max-width:100% !important;
  }
}

/* ─── Pain ─────────────────────────────────────────────────────────────── */
.ll-pain{display:grid;grid-template-columns:1fr;gap:clamp(12px,2vw,18px);margin-top:var(--ll-space-l);}
@media (min-width:900px){.ll-pain{grid-template-columns:repeat(3,1fr);}}
/* Solo item: span the grid and centre at a readable max-width */
.ll-pain__item:only-child{grid-column:1 / -1;max-width:900px;margin-inline:auto;width:100%;}
.ll-pain__item{background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));box-shadow:var(--ll-shadow);border:1px solid var(--ll-border);overflow:hidden;isolation:isolate;display:flex;flex-direction:column;}
.ll-pain__img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;display:block;}
.ll-pain__body{padding:clamp(14px,2.4vw,22px);display:flex;flex-direction:column;gap:.5rem;flex:1;}
/* Collapse the body when both title and description are empty (no ghost gap below the image) */
.ll-pain__body:has(h3:empty):has(p:empty){display:none;}
.ll-pain__item h3{margin:0;font-size:1.25rem;color:var(--ll-text);}
.ll-pain__item p{margin:0;color:var(--ll-muted);}

/* ─── Stats ────────────────────────────────────────────────────────────── */
.ll-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(16px,3vw,28px);margin-top:var(--ll-space-l);}
@media (min-width:900px){.ll-stats{grid-template-columns:repeat(4,1fr);}}
.ll-stat{text-align:center;padding:clamp(14px,2vw,22px) clamp(8px,1.5vw,16px);}
.ll-stat__value{font-family:var(--ll-heading-font) !important;font-weight:400 !important;font-size:clamp(2.2rem,5vw,3.6rem);line-height:1;color:var(--ll-accent);letter-spacing:-.02em;}
.ll-stat__label{margin-top:.5rem;color:var(--ll-muted);font-size:.95rem;line-height:1.4;}

/* ─── Use cases ────────────────────────────────────────────────────────── */
.ll-use-cases{display:grid;grid-template-columns:1fr;gap:clamp(14px,2.2vw,20px);margin-top:var(--ll-space-l);}
@media (min-width:900px){.ll-use-cases{grid-template-columns:repeat(3,1fr);}}
.ll-use-case{display:flex;flex-direction:column;background:var(--ll-surface);border-radius:var(--ll-block-radius,var(--ll-radius));box-shadow:var(--ll-shadow);border:1px solid var(--ll-border);overflow:hidden;isolation:isolate;}
/* Let the image dictate its own height (natural aspect). Clip via parent overflow:hidden. */
.ll-use-case__img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;display:block;}
.ll-use-case__body{padding:clamp(14px,2.2vw,20px);display:flex;flex-direction:column;gap:.6rem;flex:1;}
.ll-use-case__body h3{margin:0;font-size:1.2rem;color:var(--ll-text);}
.ll-use-case__body p{margin:0;color:var(--ll-muted);line-height:1.55;flex:1;}
.ll-use-case__metric{margin-top:auto;display:inline-block;align-self:flex-start;padding:.35rem .7rem;border-radius:999px;background:var(--ll-hover-tint);color:var(--ll-accent);font-weight:600;font-size:.85rem;letter-spacing:.02em;}

/* ─── Mid CTA ──────────────────────────────────────────────────────────── */
.ll-section.ll-mid-cta .ll-container{max-width:var(--ll-content-max);}
.ll-mid-cta__row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:clamp(12px,2vw,24px);padding:clamp(14px,2vw,22px) 0;}
.ll-mid-cta__text{font-family:var(--ll-heading-font) !important;font-weight:400 !important;font-size:clamp(1.4rem,3vw,2.2rem);line-height:1.2;color:var(--ll-text);flex:1 1 60%;}
.ll-mid-cta__actions{display:flex;align-items:center;gap:.9rem;flex-wrap:wrap;}
.ll-mid-cta__rr{color:var(--ll-muted);font-size:.9rem;}
@media (max-width:720px){
  .ll-mid-cta__row{flex-direction:column;align-items:flex-start;}
  .ll-mid-cta__actions{width:100%;}
}

/* ─── Mobile: stack testimonial pic above quote ────────────────────────── */
@media (max-width:720px){
  .ll-testimonial__row{grid-template-columns:1fr;}
  .ll-testimonial__pic{width:100%;height:220px;}
}

/* ─── Mobile: footer stacks vertically, links wrap (no horizontal scroll) ─ */
@media (max-width:720px){
  .ll-footer__row{flex-direction:column;align-items:flex-start;gap:14px;}
  .ll-footer-links{flex-wrap:wrap;gap:14px 18px;}
  .ll-footer .ll-copyright{display:block;}
}

/* ─── Logos strip: grid centered, text left-aligned like every other
       section. Only the logo row itself is centered, not the copy. ──── */
.ll-logos{justify-content:center;align-items:center;flex-wrap:wrap;gap:clamp(18px,3vw,36px);}
@media (max-width:720px){
  .ll-logos{justify-content:center;}
}

/* ─── Breathing room under embedded video, so it doesn't flush the edge ── */
.ll-media{margin-bottom:clamp(16px,3vw,28px);}
.ll-hero .ll-media{margin-bottom:0;}

/* When the hero uses a full-bleed video/image background, leave a small
   gap between it and the next section so the bottom edge doesn't cut hard
   into the panel that follows. */
.ll-hero:has(.ll-bg-layer){margin-bottom:clamp(24px,4vw,56px);}

/* ─── Header dropdown must not be clipped by any ancestor's overflow ──
   The header section + its inner wrappers (widesurface / surface / container /
   row) all have to be overflow:visible on mobile so the hamburger menu
   panel can extend below the header into the hero. Otherwise the dropdown
   gets chopped off at the header's bottom edge. */
.ll-header,
.ll-header.ll-section,
.ll-header .ll-widesurface,
.ll-header .ll-surface,
.ll-header .ll-container,
.ll-header .ll-header__row{overflow:visible !important;}

/* ─── Tighter line-heights throughout (was too airy) ─────────────────────
   Titles were 1.06 (fine). Leads and body copy were loose. Pull in lightly. */
.ll-lead{line-height:1.25;}
.ll-pain__item p,
.ll-use-case__body p,
.ll-step__text .ll-step__desc,
.ll-qa .ll-a{line-height:1.4;}

/* ─── Bolder testimonial quote so it reads as the headline of its section ─ */
.ll-quote{font-weight:600;line-height:1.3;font-size:clamp(1.05rem,1.6vw,1.25rem);color:var(--ll-text);}
.ll-person{font-weight:600;color:var(--ll-muted);}

