@font-face {
  font-family: "LamaLocal DM Sans";
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "LamaLocal Fraunces";
  src: url("/fonts/fraunces-latin.woff2") format("woff2");
  font-display: swap;
}

.ll-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  background: rgba(12, 29, 18, 0.96);
  border-bottom: 1px solid rgba(244, 241, 234, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: "DM Sans", sans-serif;
}

.ll-site-nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ll-site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ll-site-logo img {
  display: block;
  width: 168px;
  height: auto;
  max-height: 48px;
}

.ll-site-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.ll-site-link,
.ll-site-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #f4f1ea;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.ll-site-link:hover,
.ll-site-link:focus-visible,
.ll-site-drop-toggle:hover,
.ll-site-drop-toggle:focus-visible,
.ll-site-drop:focus-within > .ll-site-drop-toggle {
  color: #f3cb6b;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.ll-site-drop {
  position: relative;
}

.ll-site-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.ll-site-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 250px;
  padding: 9px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 14px;
  background: #132722;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.ll-site-drop:hover .ll-site-menu,
.ll-site-drop:focus-within .ll-site-menu,
.ll-site-drop.is-open .ll-site-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ll-site-drop:hover .ll-site-chevron,
.ll-site-drop:focus-within .ll-site-chevron,
.ll-site-drop.is-open .ll-site-chevron {
  transform: translateY(2px) rotate(225deg);
}

.ll-site-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
  color: rgba(244, 241, 234, 0.86);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.ll-site-menu a:hover,
.ll-site-menu a:focus-visible,
.ll-site-menu a[aria-current="page"] {
  color: #f3cb6b;
  background: rgba(201, 162, 74, 0.12);
  outline: none;
}

.ll-site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  background: #c9a24a;
  color: #0d1f17;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease;
}

.ll-site-cta:hover,
.ll-site-cta:focus-visible {
  background: #dfbd6b;
  transform: translateY(-1px);
  outline: none;
}

.ll-site-links > .ll-site-cta { display: none; }

.ll-site-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(244, 241, 234, 0.16);
  border-radius: 10px;
  background: transparent;
  color: #f4f1ea;
  cursor: pointer;
}

.ll-site-toggle span,
.ll-site-toggle::before,
.ll-site-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.ll-site-toggle span { margin: 6px 0; }
.ll-site-header.is-mobile-open .ll-site-toggle::before { transform: translateY(8px) rotate(45deg); }
.ll-site-header.is-mobile-open .ll-site-toggle span { opacity: 0; }
.ll-site-header.is-mobile-open .ll-site-toggle::after { transform: translateY(-8px) rotate(-45deg); }

/* The imported landing page has its own campaign navigation; use the shared LamaLocal navigation instead. */
.l3-navbar { display: none !important; }

.ll-contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 15px auto 24px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.ll-contact-details a {
  color: inherit;
  text-decoration: none;
}

.ll-contact-details a:hover,
.ll-contact-details a:focus-visible { color: #f3cb6b; }

.ll-ads-results {
  padding: 88px 0;
  background: #10241c;
  border-top: 1px solid rgba(183, 192, 208, 0.12);
  border-bottom: 1px solid rgba(183, 192, 208, 0.12);
  font-family: "DM Sans", sans-serif;
}

.ll-ads-results-inner { width: min(1440px, calc(100% - 40px)); margin: 0 auto; }
.ll-ads-results-head { max-width: 720px; margin-bottom: 38px; }
.ll-ads-results-head h2 { margin: 12px 0 16px; color: #f4f1ea; font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.12; }
.ll-ads-results-head p { color: #b7c0d0; font-size: 1.02rem; line-height: 1.7; }
.ll-ads-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ll-ads-result-card { min-width: 0; padding: 26px; border: 1px solid rgba(183, 192, 208, 0.18); border-radius: 16px; background: #132722; box-shadow: 0 18px 44px rgba(0,0,0,.2); }
.ll-ads-result-brand { display: flex; align-items: center; gap: 10px; min-height: 42px; }
.ll-ads-result-brand img { width: 42px; height: 32px; object-fit: contain; border-radius: 6px; background: #f4f1ea; padding: 3px; }
.ll-ads-result-brand h3 { margin: 0; color: #f4f1ea; font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.ll-ads-result-brand p { margin: 3px 0 0; color: #c9a24a; font-size: .82rem; font-weight: 700; }
.ll-ads-proof { display: block; width: 100%; height: 170px; margin-top: 24px; border: 1px solid rgba(183,192,208,.18); border-radius: 10px; background: #f4f1ea; object-fit: contain; }
.ll-ads-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 24px; }
.ll-ads-metrics > div { min-width: 0; padding: 13px 10px; border: 1px solid rgba(183, 192, 208, 0.13); border-radius: 10px; background: rgba(244,241,234,.03); }
.ll-ads-metrics span { display: block; color: #8a93a6; font-size: .7rem; white-space: nowrap; }
.ll-ads-metrics strong { display: block; margin-top: 7px; color: #f3cb6b; font-family: "Fraunces", Georgia, serif; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 500; white-space: nowrap; }
.ll-ads-chart { position: relative; height: 120px; margin-top: 24px; overflow: hidden; border-bottom: 1px solid rgba(183,192,208,.28); background: repeating-linear-gradient(to bottom, transparent 0, transparent 38px, rgba(183,192,208,.09) 39px); }
.ll-ads-chart::before, .ll-ads-chart::after { position: absolute; left: -2%; width: 106%; height: 3px; border-radius: 3px; content: ""; transform-origin: left center; }
.ll-ads-chart::before { background: #3d82e8; }
.ll-ads-chart::after { background: #dd4b3e; }
.ll-ads-chart--one::before { top: 82%; transform: rotate(-18deg) skewY(-9deg); }
.ll-ads-chart--one::after { top: 87%; transform: rotate(-24deg) skewY(12deg); }
.ll-ads-chart--two::before { top: 74%; transform: rotate(-7deg) skewY(-4deg); }
.ll-ads-chart--two::after { top: 86%; transform: rotate(-14deg) skewY(8deg); }
.ll-ads-chart i { position: absolute; z-index: 1; width: 9px; height: 9px; border-radius: 50%; background: #3d82e8; box-shadow: 0 0 0 3px rgba(61,130,232,.16); }
.ll-ads-chart i:first-child { left: 42%; top: 46%; }
.ll-ads-chart i:last-child { right: 12%; top: 12%; }
.ll-ads-note { margin: 16px 0 0; color: #8a93a6; font-size: .78rem; }

.ll-chatgpt-examples { padding: 88px 0; background: #0d1f17; border-bottom: 1px solid rgba(183,192,208,.12); font-family: "DM Sans", sans-serif; }
.ll-chatgpt-examples-inner { width: min(1440px, calc(100% - 40px)); margin: 0 auto; }
.ll-chatgpt-examples-head { max-width: 760px; margin-bottom: 38px; }
.ll-chatgpt-examples-head h2 { margin: 12px 0 16px; color: #f4f1ea; font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.12; }
.ll-chatgpt-examples-head p { margin: 0; color: #b7c0d0; font-size: 1.02rem; line-height: 1.7; }
.ll-chatgpt-examples-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ll-chatgpt-example-card { min-width: 0; margin: 0; padding: 14px; overflow: hidden; border: 1px solid rgba(183,192,208,.18); border-radius: 16px; background: #132722; box-shadow: 0 18px 44px rgba(0,0,0,.2); }
.ll-chatgpt-example-card > a { display: block; height: 430px; overflow: hidden; border-radius: 11px; background: #070908; }
.ll-chatgpt-example-card img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: top center; transition: transform .25s ease; }
.ll-chatgpt-example-card > a:hover img,
.ll-chatgpt-example-card > a:focus-visible img { transform: scale(1.015); }
.ll-chatgpt-example-card figcaption { display: grid; gap: 4px; padding: 16px 4px 3px; }
.ll-chatgpt-example-card figcaption strong { color: #f4f1ea; font-family: "Fraunces", Georgia, serif; font-size: 1.16rem; font-weight: 500; }
.ll-chatgpt-example-card figcaption span { color: #b7c0d0; font-size: .82rem; line-height: 1.45; }

.ll-chatgpt-intro { padding: 88px 0; background: #0d1f17; border-bottom: 1px solid rgba(183,192,208,.12); font-family: "DM Sans", sans-serif; }
.ll-chatgpt-intro-inner { width: min(1440px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 6vw, 90px); align-items: center; }
.ll-chatgpt-intro-copy { max-width: 600px; }
.ll-chatgpt-intro-copy h2 { margin: 12px 0 16px; color: #f4f1ea; font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.12; }
.ll-chatgpt-intro-copy p { margin: 0 0 26px; color: #b7c0d0; font-size: 1.02rem; line-height: 1.7; }
.ll-chatgpt-intro-copy .ll-site-cta { display: inline-flex; gap: 10px; }
.ll-chatgpt-intro-visual { min-width: 0; }
.ll-chatgpt-intro-visual img { display: block; width: 100%; border: 1px solid rgba(201,162,74,.34); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,.3); }

@media (max-width: 960px) {
  .ll-site-nav { width: min(100% - 28px, 1180px); min-height: 70px; }
  .ll-site-logo img { width: 146px; }
  .ll-site-toggle { display: block; }
  .ll-site-nav > .ll-site-cta { display: none; }
  .ll-site-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 12px 16px 18px;
    border-top: 1px solid rgba(244, 241, 234, 0.1);
    background: #0c1d12;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  }
  .ll-site-header.is-mobile-open .ll-site-links { display: flex; flex-direction: column; }
  .ll-site-link,
  .ll-site-drop-toggle { width: 100%; justify-content: space-between; padding: 0 14px; }
  .ll-site-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 3px 0 8px;
    padding: 5px 8px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ll-site-drop:hover .ll-site-menu { display: none; }
  .ll-site-drop.is-open .ll-site-menu,
  .ll-site-drop:focus-within .ll-site-menu { display: block; transform: none; }
  .ll-site-links > .ll-site-cta { display: inline-flex; margin-top: 7px; }
  .ll-chatgpt-examples-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .ll-ads-results { padding: 68px 0; }
  .ll-ads-results-inner { width: min(100% - 28px, 1440px); }
  .ll-ads-results-grid { grid-template-columns: 1fr; }
  .ll-ads-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-chatgpt-examples { padding: 68px 0; }
  .ll-chatgpt-examples-inner { width: min(100% - 28px, 1440px); }
  .ll-chatgpt-intro { padding: 68px 0; }
  .ll-chatgpt-intro-inner { width: min(100% - 28px, 1440px); grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .ll-contact-details { flex-direction: column; align-items: center; gap: 5px; }
  .ll-chatgpt-examples-grid { grid-template-columns: 1fr; }
  .ll-chatgpt-example-card > a { height: min(145vw, 620px); }
}

/* Vieninga žalia LamaLocal tema visuose puslapiuose, išskyrus jau pilnai L3 tema sukurtus puslapius. */
body.lamalocal-unified-page:not(.l3-active) {
  --ink: #f4f1ea !important;
  --muted: #b7c0d0 !important;
  --paper: #132722 !important;
  --white: #132722 !important;
  --surface: #132722 !important;
  --soft: #10241c !important;
  --line: rgba(183, 192, 208, .18) !important;
  --green: #c9a24a !important;
  --green-dark: #f3cb6b !important;
  --mint: rgba(201, 162, 74, .12) !important;
  --navy: #0d1f17 !important;
  --navy-2: #132722 !important;
  --blue: #c9a24a !important;
  --blue-light: #f3cb6b !important;
  --trial-blue: #c9a24a !important;
  --trial-blue-dark: #b48d35 !important;
  --trial-blue-light: #f3cb6b !important;
  --trial-navy: #f4f1ea !important;
  --trial-ink: #f4f1ea !important;
  --trial-text: #b7c0d0 !important;
  --trial-line: rgba(183, 192, 208, .18) !important;
  --trial-surface: #132722 !important;
  --trial-soft: #10241c !important;
  --trial-green: #c9a24a !important;
  --trial-cta-gradient: linear-gradient(135deg, #c9a24a, #f3cb6b) !important;
  --trial-cta-gradient-hover: linear-gradient(135deg, #dfbd6b, #f3cb6b) !important;
  margin: 0;
  background: #0d1f17 !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) main,
body.lamalocal-unified-page:not(.l3-active) #root,
body.lamalocal-unified-page:not(.l3-active) .trial-page,
body.lamalocal-unified-page:not(.l3-active) .trial-main {
  background: #0d1f17 !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) main > section,
body.lamalocal-unified-page:not(.l3-active) .trial-main > section,
body.lamalocal-unified-page:not(.l3-active) .section,
body.lamalocal-unified-page:not(.l3-active) .hero,
body.lamalocal-unified-page:not(.l3-active) .lead-form-wrap,
body.lamalocal-unified-page:not(.l3-active) .ads-solutions {
  background-color: #0d1f17 !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) main > section:nth-of-type(even),
body.lamalocal-unified-page:not(.l3-active) .trial-main > section:nth-of-type(even),
body.lamalocal-unified-page:not(.l3-active) .section.soft,
body.lamalocal-unified-page:not(.l3-active) .section.white {
  background-color: #10241c !important;
}

body.lamalocal-unified-page:not(.l3-active) h1,
body.lamalocal-unified-page:not(.l3-active) h2,
body.lamalocal-unified-page:not(.l3-active) h3,
body.lamalocal-unified-page:not(.l3-active) h4,
body.lamalocal-unified-page:not(.l3-active) .trial-title,
body.lamalocal-unified-page:not(.l3-active) .trial-heading,
body.lamalocal-unified-page:not(.l3-active) .trial-subheading {
  color: #f4f1ea !important;
  font-family: "LamaLocal Fraunces", Georgia, serif !important;
  letter-spacing: 0 !important;
}

body.lamalocal-unified-page:not(.l3-active) p,
body.lamalocal-unified-page:not(.l3-active) li,
body.lamalocal-unified-page:not(.l3-active) .lead,
body.lamalocal-unified-page:not(.l3-active) .hero-lead,
body.lamalocal-unified-page:not(.l3-active) .trial-lead,
body.lamalocal-unified-page:not(.l3-active) .trial-subheading {
  color: #b7c0d0 !important;
}

/* Original light-theme green text needs a light foreground on dark cards. */
body.lamalocal-unified-page:not(.l3-active) .check,
body.lamalocal-unified-page:not(.l3-active) .ads-feature-point {
  color: #dbe5df !important;
}

/* Keep the small hero badge legible on the unified dark palette. */
body.lamalocal-unified-page:not(.l3-active) #root > div > section:first-of-type span.inline-flex {
  color: #f3cb6b !important;
  background: #132722 !important;
  border-color: rgba(243, 203, 107, .42) !important;
}

/* Intrinsic dimensions reserve space; the rendered height follows the width. */
body.lamalocal-unified-page:not(.l3-active) .trust-partner img {
  width: 54px !important;
  height: 54px !important;
  aspect-ratio: 1;
  object-fit: contain;
}

body.lamalocal-unified-page:not(.l3-active) .eyebrow,
body.lamalocal-unified-page:not(.l3-active) .kicker,
body.lamalocal-unified-page:not(.l3-active) .trial-tag,
body.lamalocal-unified-page:not(.l3-active) .accent,
body.lamalocal-unified-page:not(.l3-active) .gradient-text {
  color: #c9a24a !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body.lamalocal-unified-page:not(.l3-active) .hero-card,
body.lamalocal-unified-page:not(.l3-active) .trust-row,
body.lamalocal-unified-page:not(.l3-active) .service-card,
body.lamalocal-unified-page:not(.l3-active) .benefit,
body.lamalocal-unified-page:not(.l3-active) .step,
body.lamalocal-unified-page:not(.l3-active) .case,
body.lamalocal-unified-page:not(.l3-active) .ads-feature-card,
body.lamalocal-unified-page:not(.l3-active) .budget-controls,
body.lamalocal-unified-page:not(.l3-active) .budget-output,
body.lamalocal-unified-page:not(.l3-active) .trial-card,
body.lamalocal-unified-page:not(.l3-active) .trial-story-card,
body.lamalocal-unified-page:not(.l3-active) .trial-contact-card,
body.lamalocal-unified-page:not(.l3-active) .trial-proof-box,
body.lamalocal-unified-page:not(.l3-active) details,
body.lamalocal-unified-page:not(.l3-active) #root > article {
  background: #132722 !important;
  color: #f4f1ea !important;
  border-color: rgba(183, 192, 208, .18) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2) !important;
}

body.lamalocal-unified-page:not(.l3-active) .case,
body.lamalocal-unified-page:not(.l3-active) .results,
body.lamalocal-unified-page:not(.l3-active) .format-note,
body.lamalocal-unified-page:not(.l3-active) .lead-form-card,
body.lamalocal-unified-page:not(.l3-active) .audit-card,
body.lamalocal-unified-page:not(.l3-active) footer,
body.lamalocal-unified-page:not(.l3-active) .footer {
  background: #091710 !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) .btn,
body.lamalocal-unified-page:not(.l3-active) .button,
body.lamalocal-unified-page:not(.l3-active) .trial-cta,
body.lamalocal-unified-page:not(.l3-active) .trial-inline-cta,
body.lamalocal-unified-page:not(.l3-active) .trial-form-button,
body.lamalocal-unified-page:not(.l3-active) button[type="submit"] {
  background: #c9a24a !important;
  border-color: #c9a24a !important;
  color: #0d1f17 !important;
  box-shadow: none !important;
}

body.lamalocal-unified-page:not(.l3-active) .btn.outline,
body.lamalocal-unified-page:not(.l3-active) .btn.light,
body.lamalocal-unified-page:not(.l3-active) .button.secondary,
body.lamalocal-unified-page:not(.l3-active) .trial-cta--ghost {
  background: transparent !important;
  border-color: rgba(244, 241, 234, .3) !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) input,
body.lamalocal-unified-page:not(.l3-active) select,
body.lamalocal-unified-page:not(.l3-active) textarea {
  background: #f4f1ea !important;
  border-color: rgba(183, 192, 208, .35) !important;
  color: #0d1f17 !important;
}

body.lamalocal-unified-page:not(.l3-active) #root > article {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px clamp(24px, 5vw, 64px) 80px;
  border-radius: 0 0 18px 18px;
}

body.lamalocal-unified-page:not(.l3-active) #root > article a { color: #f3cb6b; }

@media (max-width: 760px) {
  body.lamalocal-unified-page:not(.l3-active) #root > article {
    width: min(100% - 28px, 980px);
    padding: 118px 20px 58px;
  }
}

/* Pilnas senųjų puslapių spalvų ir tipografikos suvienodinimas. */
body.lamalocal-unified-page:not(.l3-active) :where(p, li, a, span, label, button, input, select, textarea, th, td, small, strong) {
  font-family: "LamaLocal DM Sans", "DM Sans", sans-serif !important;
}

body.lamalocal-unified-page:not(.l3-active) #root section,
body.lamalocal-unified-page:not(.l3-active) .hero,
body.lamalocal-unified-page:not(.l3-active) .cta-section,
body.lamalocal-unified-page:not(.l3-active) .hero-bg {
  background-color: #0d1f17 !important;
  background-image: none !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) #root section:nth-of-type(even) {
  background-color: #10241c !important;
}

body.lamalocal-unified-page:not(.l3-active) section > .absolute.inset-0,
body.lamalocal-unified-page:not(.l3-active) .hero > .absolute,
body.lamalocal-unified-page:not(.l3-active) .hero-bg > .absolute {
  background-color: transparent !important;
  background-image: none !important;
}

body.lamalocal-unified-page:not(.l3-active) #root :is(div, article)[class~="bg-card"],
body.lamalocal-unified-page:not(.l3-active) #root :is(div, article)[class*="bg-white"],
body.lamalocal-unified-page:not(.l3-active) .chat-window,
body.lamalocal-unified-page:not(.l3-active) .audience-card,
body.lamalocal-unified-page:not(.l3-active) .metric-board,
body.lamalocal-unified-page:not(.l3-active) .calendar-shell,
body.lamalocal-unified-page:not(.l3-active) .status-card {
  background: #132722 !important;
  border-color: rgba(183, 192, 208, .18) !important;
  color: #f4f1ea !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2) !important;
}

body.lamalocal-unified-page:not(.l3-active) .chat-question,
body.lamalocal-unified-page:not(.l3-active) .ad-card,
body.lamalocal-unified-page:not(.l3-active) .metric,
body.lamalocal-unified-page:not(.l3-active) .trial-mini-stat,
body.lamalocal-unified-page:not(.l3-active) .trial-trust-pill {
  background: #10241c !important;
  border-color: rgba(183, 192, 208, .18) !important;
  color: #f4f1ea !important;
}

body.lamalocal-unified-page:not(.l3-active) .metric:nth-child(even) {
  background: #132722 !important;
}

body.lamalocal-unified-page:not(.l3-active) span[class*="bg-gradient"],
body.lamalocal-unified-page:not(.l3-active) span[class*="text-transparent"] {
  background: none !important;
  color: #c9a24a !important;
  -webkit-text-fill-color: #c9a24a !important;
}

body.lamalocal-unified-page:not(.l3-active) :is(th, td).highlight,
body.lamalocal-unified-page:not(.l3-active) th {
  background: rgba(201, 162, 74, .09) !important;
  border-color: rgba(183, 192, 208, .18) !important;
  color: #f4f1ea !important;
}

/* Pagrindinio puslapio paslaugų pasirinkimas */
.ll-service-picker{padding:96px 22px;background:#0d1f17;color:#f4f1ea;border-top:1px solid rgba(244,241,234,.1);border-bottom:1px solid rgba(244,241,234,.1)}
.ll-service-picker-inner{width:min(1160px,100%);margin:0 auto}.ll-service-picker-head{max-width:760px;margin:0 auto 42px;text-align:center}.ll-service-picker-head h2{margin:14px 0 14px;color:#f4f1ea;font-family:"LamaLocal Fraunces",Georgia,serif;font-size:clamp(2.3rem,5vw,4.2rem);font-weight:500;line-height:1.02;letter-spacing:-.035em}.ll-service-picker-head p{margin:0;color:#b9c8c0;font-size:1.06rem;line-height:1.7}
.ll-service-picker-shell{display:grid;grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr);width:min(920px,100%);margin:0 auto;overflow:hidden;border:1px solid rgba(244,241,234,.16);border-radius:22px;background:#10241c;box-shadow:0 20px 54px rgba(0,0,0,.25)}.ll-service-picker-tabs{display:flex;flex-direction:column;padding:10px;background:#0a1a12;border-right:1px solid rgba(244,241,234,.12)}.ll-service-picker-tabs button{display:grid;grid-template-columns:36px minmax(0,1fr) 24px;align-items:center;gap:10px;width:100%;min-height:72px;padding:12px;border:0;border-radius:14px;background:transparent;color:#d8e3dc;text-align:left;cursor:pointer;transition:background .2s ease,color .2s ease,transform .2s ease}.ll-service-picker-tabs button:hover{background:rgba(244,241,234,.06)}.ll-service-picker-tabs button.is-active{background:linear-gradient(135deg,#c9a24a,#e0bd68);color:#0d1f17;box-shadow:0 8px 24px rgba(201,162,74,.16)}.ll-service-tab-number{font-size:.7rem;font-weight:800;letter-spacing:.1em;opacity:.75}.ll-service-picker-tabs b{display:block;font-size:.94rem;line-height:1.2}.ll-service-picker-tabs small{display:block;margin-top:4px;font-size:.73rem;line-height:1.3;opacity:.72}.ll-service-tab-arrow{font-size:1.65rem;font-weight:300;text-align:center;transition:transform .2s ease}.ll-service-picker-tabs button.is-active .ll-service-tab-arrow{transform:translateX(3px)}
.ll-service-picker-panel{display:flex;min-height:360px;flex-direction:column;justify-content:center;padding:36px 42px;background:radial-gradient(circle at 100% 0,rgba(79,140,255,.13),transparent 42%),#132722;outline:none}.ll-service-panel-eyebrow{color:#d7bd78;font-size:.7rem;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.ll-service-picker-panel h3{max-width:560px;margin:10px 0 14px;color:#f4f1ea;font-family:"LamaLocal Fraunces",Georgia,serif;font-size:clamp(1.8rem,3vw,2.65rem);font-weight:500;line-height:1.06;letter-spacing:-.025em}.ll-service-picker-panel p{max-width:560px;margin:0 0 20px;color:#c2d0c8;font-size:.93rem;line-height:1.62}.ll-service-picker-panel strong{display:block;margin-bottom:9px;color:#f4f1ea;font-size:.85rem}.ll-service-picker-panel ul{display:grid;gap:7px;margin:0 0 22px;padding:0;list-style:none}.ll-service-picker-panel li{display:flex;align-items:flex-start;gap:9px;color:#dbe5df;font-size:.84rem;line-height:1.4}.ll-service-picker-panel li span{display:grid;flex:0 0 20px;height:20px;place-items:center;border-radius:50%;background:rgba(201,162,74,.16);color:#f3cb6b;font-size:.7rem;font-weight:900}.ll-service-panel-cta{display:inline-flex;align-items:center;align-self:flex-start;gap:10px;min-height:46px;padding:0 19px;border-radius:999px;background:#c9a24a;color:#0d1f17!important;font-size:.9rem;font-weight:800;text-decoration:none;transition:background .2s ease,transform .2s ease}.ll-service-panel-cta:hover{background:#e0bd68;transform:translateY(-2px)}
@media(max-width:820px){.ll-service-picker{padding:72px 16px}.ll-service-picker-shell{grid-template-columns:1fr}.ll-service-picker-tabs{display:grid;grid-template-columns:1fr 1fr;border-right:0;border-bottom:1px solid rgba(244,241,234,.12)}.ll-service-picker-tabs button{grid-template-columns:34px minmax(0,1fr);min-height:92px}.ll-service-tab-arrow{display:none}.ll-service-picker-panel{min-height:0;padding:38px 26px 42px}}
@media(max-width:520px){.ll-service-picker{padding:58px 12px}.ll-service-picker-head{margin-bottom:30px}.ll-service-picker-head h2{font-size:2.45rem}.ll-service-picker-tabs{grid-template-columns:1fr;padding:9px}.ll-service-picker-tabs button{min-height:76px}.ll-service-picker-panel{padding:32px 21px 36px}.ll-service-picker-panel h3{font-size:2.2rem}.ll-service-panel-cta{width:100%;justify-content:center;text-align:center}}

.ll-general-faq-list{display:grid;width:min(680px,100%);margin:38px auto 0;gap:9px}
#faq[data-ll-general-faq="true"] .l3-section-head{max-width:860px;margin-inline:auto}
#faq[data-ll-general-faq="true"] .l3-section-head .l3-lead{max-width:720px;margin:18px auto 0;color:#b9c8c0;line-height:1.7}
#faq[data-ll-general-faq="true"] .l3-faq-item{padding:16px 18px;border-radius:18px}
#faq[data-ll-general-faq="true"] .l3-faq-item summary{align-items:center;font-size:.95rem;line-height:1.35}
#faq[data-ll-general-faq="true"] .l3-faq-answer{max-width:620px;margin-top:12px;color:#cbd6d0;font-size:.92rem;line-height:1.65}
@media(max-width:640px){.ll-general-faq-list{margin-top:30px;gap:10px}#faq[data-ll-general-faq="true"] .l3-section-head .l3-lead{font-size:.98rem}#faq[data-ll-general-faq="true"] .l3-faq-item{padding:16px}}

.ll-about-logo-section{padding:22px 20px 72px;background:#0d1f17;color:#f4f1ea}
.ll-about-logo-inner{width:min(1120px,100%);margin:0 auto}
.ll-about-logo-label{margin:0 0 28px;color:#d7bd78;font-size:.75rem;font-weight:800;letter-spacing:.16em;text-align:center;text-transform:uppercase}
.ll-about-logo-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}
.ll-about-logo-item{display:flex;min-width:0;height:92px;align-items:center;justify-content:center;padding:17px 20px;border:1px solid rgba(244,241,234,.11);border-radius:16px;background:#132722}
.ll-about-logo-item img{display:block;width:auto;height:auto;max-width:100%;max-height:54px;object-fit:contain;filter:none!important;mix-blend-mode:normal!important}
@media(max-width:900px){.ll-about-logo-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:580px){.ll-about-logo-section{padding:12px 14px 54px}.ll-about-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.ll-about-logo-item{height:78px;padding:14px}.ll-about-logo-item img{max-height:46px}}

body.lamalocal-unified-page:not(.l3-active) .cta-section,
body.lamalocal-unified-page:not(.l3-active) .hero-bg,
body.lamalocal-unified-page:not(.l3-active) #konsultacija {
  background: #091710 !important;
}

body.lamalocal-unified-page:not(.l3-active) footer,
body.lamalocal-unified-page:not(.l3-active) .footer {
  background: #091710 !important;
  background-image: none !important;
  border-color: rgba(183, 192, 208, .14) !important;
  color: #f4f1ea !important;
  font-family: "LamaLocal DM Sans", "DM Sans", sans-serif !important;
}

body.lamalocal-unified-page:not(.l3-active) footer :is(p, li, a, span, small),
body.lamalocal-unified-page:not(.l3-active) .footer :is(p, li, a, span, small) {
  color: #b7c0d0 !important;
}

body.lamalocal-unified-page:not(.l3-active) footer :is(h2, h3, h4),
body.lamalocal-unified-page:not(.l3-active) .footer :is(h2, h3, h4) {
  color: #f4f1ea !important;
  font-family: "LamaLocal Fraunces", Georgia, serif !important;
}

body.lamalocal-unified-page:not(.l3-active) footer a:hover,
body.lamalocal-unified-page:not(.l3-active) footer a:focus-visible,
body.lamalocal-unified-page:not(.l3-active) .footer a:hover,
body.lamalocal-unified-page:not(.l3-active) .footer a:focus-visible {
  color: #f3cb6b !important;
}
