/* Marktorix / Apexmetrics — dual-channel LP system
 *
 * Channels (PHP: page_channel(), page_is_landing_channel(), page_is_white_channel())
 *   .page-landing  — black / ads funnel (modal form, landing.js guards)
 *   .page-white    — education / safe site (inline hero form, white-sync.css)
 *
 * CSS scope
 *   :is(.page-landing, .page-white) — shared design tokens + LP components
 *   .page-landing only               — funnel layout, modal, Figma sections
 *   .page-white only (white-sync)    — shell swap, typography, home overrides
 *
 * Forms (PHP: contact_form_href(), form_uses_modal(), page_lead_source())
 *   landing → #lp-form-wrap + data-lp-form-open + source=landing
 *   white   → #kontakt (hero form column) + source=website
 */

:is(.page-landing, .page-white) {
  --lp-bg: #fff;
  --lp-soft: #fafafa;
  --lp-ink: #262626;
  --lp-muted: #484848;
  --lp-line: #b6b6b6;
  --lp-accent: #f35120;
  --lp-accent-dark: #c93f15;
  --lp-dark: #262626;
  --lp-radius: 40px;
  --lp-max: 1410px;
  --lp-font-heading: "Inter", system-ui, sans-serif;
  --lp-font-body: "Inter", system-ui, sans-serif;
  color: var(--lp-ink);
  background: var(--lp-bg);
  font-family: var(--lp-font-body);
}

:is(.page-landing, .page-white) .container {
  width: 100%;
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--lp-line);
  backdrop-filter: blur(14px);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 86px;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.lp-logo .icon {
  color: var(--lp-accent);
}

.lp-header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lp-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  background: #fff;
  color: var(--lp-ink);
}

.lp-burger-icon {
  display: none;
}

.lp-burger-icon--open {
  display: flex;
}

.lp-burger[aria-expanded="true"] .lp-burger-icon--open {
  display: none;
}

.lp-burger[aria-expanded="true"] .lp-burger-icon--close {
  display: flex;
}

.lp-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(22, 22, 22, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lp-header-link {
  color: var(--lp-ink);
  font-size: 1rem;
  line-height: 1;
}

.lp-header-link:hover {
  color: var(--lp-accent);
}

.lp-header-cta,
.lp-btn,
.lp-submit,
.lp-form-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.lp-header-cta,
.lp-btn--primary,
.lp-submit,
.lp-form-reset {
  color: #fff;
  background: var(--lp-accent);
}

.lp-header-cta:hover,
.lp-btn--primary:hover,
.lp-submit:hover,
.lp-form-reset:hover {
  background: var(--lp-accent-dark);
  transform: translateY(-1px);
}

.lp-btn--ghost {
  color: var(--lp-ink);
  border: 1px solid var(--lp-line);
  background: #fff;
}

.lp-btn--ghost:hover {
  color: var(--lp-accent);
  border-color: var(--lp-accent);
}

.lp-trust-bar {
  border-bottom: 1px solid #f0d7cf;
  background: #fff7f4;
}

.lp-trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.8rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-trust-bar p {
  margin: 0;
}

.lp-trust-bar a {
  margin-left: auto;
  color: var(--lp-accent);
  font-weight: 700;
  white-space: nowrap;
}

.lp-trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lp-accent);
  box-shadow: 0 0 0 6px rgba(243, 81, 32, 0.12);
  flex: 0 0 auto;
}

.lp-hero {
  padding: clamp(4rem, 7vw, 7.5rem) 0 5rem;
  background: linear-gradient(90deg, #fff 0%, #fff 62%, #f1f1f1 62%, #f1f1f1 100%);
}

.lp-top-visual {
  position: relative;
  overflow: hidden;
  width: min(100%, 1080px);
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  border: 1px solid #e4e7ec;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 81, 32, 0.12), transparent 15rem),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 22px 60px rgba(38, 38, 38, 0.1);
}

.lp-top-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.14) 100%);
  content: "";
}

.lp-top-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.lp-eyebrow,
.lp-form-kicker {
  display: inline-flex;
  color: var(--lp-accent);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

.lp-hero h1,
.lp-section-copy h2,
.lp-section-heading h2,
.lp-cta-image h2 {
  margin: 0;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.lp-hero h1 {
  max-width: 760px;
  margin-top: 1.3rem;
  font-size: clamp(3.2rem, 6vw, 5.25rem);
}

.lp-lead {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.lp-hero-list:not(.lp-hero-list--figma) {
  display: grid;
  gap: 0.8rem;
  max-width: 700px;
  margin: 2rem 0 0;
  color: #000;
  font-size: 1rem;
  text-transform: uppercase;
}

.lp-hero-list:not(.lp-hero-list--figma) li {
  position: relative;
  padding-left: 1.2rem;
}

.lp-hero-list:not(.lp-hero-list--figma) li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lp-accent);
  content: "";
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.3rem;
}

.lp-provider {
  margin-top: 1.3rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 760px;
  margin-top: 1.7rem;
}

.lp-hero-proof div {
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem;
  box-shadow: 0 12px 34px rgba(38, 38, 38, 0.06);
}

.lp-hero-proof strong {
  display: block;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.lp-hero-proof span {
  display: block;
  margin-top: 0.35rem;
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.lp-package-preview {
  max-width: 760px;
  margin-top: 1rem;
  border: 1px solid #e7e7e7;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(243, 81, 32, 0.08), transparent 58%),
    #fff;
  box-shadow: 0 18px 48px rgba(38, 38, 38, 0.08);
  padding: 1.1rem;
}

.lp-package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.lp-package-head span {
  color: var(--lp-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-package-head strong {
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.02rem;
}

.lp-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.lp-package-grid span {
  border: 1px solid #eee;
  border-radius: 999px;
  background: #fafafa;
  color: var(--lp-muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 0.7rem;
  text-align: center;
}

.lp-provider a,
.lp-privacy a {
  color: var(--lp-accent);
  font-weight: 700;
}

.lp-form-panel {
  position: relative;
  border: 1px solid #e7e7e7;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(38, 38, 38, 0.12);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.lp-form-panel::before {
  position: absolute;
  inset: -18px -18px auto auto;
  z-index: -1;
  width: 45%;
  height: 180px;
  border-radius: 36px;
  background: var(--lp-accent);
  content: "";
}

.lp-form-title {
  margin: 0.4rem 0 0;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.2;
}

.lp-form-lead {
  margin: 0.65rem 0 1.35rem;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.lp-form-steps {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  border-radius: 22px;
  background: #fff7f4;
  padding: 0.9rem;
}

.lp-form-steps span {
  position: relative;
  color: var(--lp-muted);
  font-size: 0.84rem;
  font-weight: 700;
  padding-left: 1.25rem;
}

.lp-form-steps span::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lp-accent);
  content: "";
}

.lp-form-note {
  border: 1px solid #f1c8bc;
  border-radius: 18px;
  background: #fff;
  color: var(--lp-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  padding: 0.8rem 0.9rem;
  margin-bottom: 1.1rem;
}

.lp-form-note strong {
  color: var(--lp-ink);
}

.lp-form {
  display: grid;
  gap: 0.95rem;
}

.lp-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--lp-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-req::after {
  color: var(--lp-accent);
  content: "*";
}

.lp-label-opt {
  color: #777;
  font-weight: 500;
}

.lp-input,
.lp-textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 18px;
  background: #fff;
  color: var(--lp-ink);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-input:focus,
.lp-textarea:focus {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 4px rgba(243, 81, 32, 0.12);
}

.lp-phone-input {
  display: flex;
  align-items: stretch;
}

.lp-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #dedede;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: #fafafa;
  padding-inline: 0.85rem;
  color: var(--lp-ink);
  font-weight: 700;
}

.lp-phone-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
}

.lp-phone-national {
  border-radius: 0 18px 18px 0;
}

.lp-phone-hint,
.lp-privacy {
  margin: 0.4rem 0 0;
  color: #666;
  font-size: 0.78rem;
  line-height: 1.45;
}

.lp-submit {
  width: 100%;
  border: 0;
  min-height: 54px;
}

.lp-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.lp-error,
.lp-form-result {
  display: block;
  margin-top: 0.35rem;
  color: #b42318;
  font-size: 0.82rem;
}

.lp-form-result:empty {
  display: none;
}

.lp-form-result--success {
  color: #157347;
}

.lp-form-success {
  text-align: center;
  padding: 2rem 0;
}

.lp-form-success-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--lp-accent);
  font-size: 1.8rem;
  font-weight: 800;
}

.lp-partner-strip {
  background: var(--lp-dark);
  color: #fff;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-block: 2.6rem;
  text-align: center;
}

.lp-stats-grid strong {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.lp-stats-grid span:not(.lp-stat-icon) {
  display: block;
  margin-top: 0.65rem;
  color: #fafafa;
}

.lp-summary-band {
  background: #111827;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-block: 2.4rem;
}

.lp-summary-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #f35120;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-summary-grid h2 {
  margin: 0;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lp-summary-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.lp-section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.lp-about,
.lp-services,
.lp-testimonials {
  background: #fff;
}

.lp-why,
.lp-testimonials {
  background: var(--lp-soft);
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.25rem);
}

.lp-split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.lp-image-card {
  position: relative;
  min-height: 420px;
}

.lp-image-card span {
  position: absolute;
  inset: 12% 6% 0 0;
  border-radius: var(--lp-radius);
  background: var(--lp-accent);
}

.lp-image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(520px, 62vw);
  border-radius: var(--lp-radius);
  object-fit: cover;
  background: #fff;
  box-shadow: 0 26px 70px rgba(38, 38, 38, 0.12);
}

.lp-image-card--wide img {
  height: min(560px, 60vw);
}

.lp-section-copy h2,
.lp-section-heading h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.lp-section-copy p,
.lp-section-heading p {
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.lp-section-copy .lp-btn {
  margin-top: 1.1rem;
}

.lp-section-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}

.lp-card-grid,
.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.lp-process {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.lp-process-grid article {
  position: relative;
  border: 1px solid #e7e7e7;
  border-radius: 28px;
  background: #fff;
  padding: 1.45rem;
  box-shadow: 0 18px 46px rgba(38, 38, 38, 0.06);
}

.lp-process-grid article::after {
  position: absolute;
  top: 2rem;
  right: -0.7rem;
  width: 1.4rem;
  height: 1px;
  background: #d6d6d6;
  content: "";
}

.lp-process-grid article:last-child::after {
  display: none;
}

.lp-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--lp-accent);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.lp-process-grid h3 {
  margin: 1rem 0 0.55rem;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lp-process-grid p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.lp-info-card,
.lp-testimonial-grid figure {
  border: 1px solid var(--lp-line);
  border-radius: 32px;
  background: #fff;
  padding: clamp(1.3rem, 3vw, 2.1rem);
}

.lp-info-card span {
  color: var(--lp-accent);
  font-family: Inter, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.lp-info-card h3 {
  margin: 1.3rem 0 0.8rem;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.lp-info-card p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-cta-image {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: #fff;
  text-align: center;
  background: #1f1f1f url("../img/landing-education-visual.svg") center/cover no-repeat;
}

.lp-cta-image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(25, 25, 25, 0.56);
  content: "";
}

.lp-cta-inner {
  max-width: 980px;
}

.lp-cta-image h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4.5vw, 3.9rem);
}

.lp-cta-image p {
  max-width: 680px;
  margin: 1.25rem auto 2rem;
  color: #fafafa;
  line-height: 1.6;
}

.lp-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin-top: 1.7rem;
}

.lp-check-list li {
  position: relative;
  padding-left: 2rem;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
}

.lp-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  color: #fff;
  background: var(--lp-accent);
  content: "✓";
  font-size: 0.8rem;
}

.lp-testimonial-grid figure {
  margin: 0;
}

.lp-testimonial-grid div {
  color: #f1c644;
  letter-spacing: 0.12em;
}

.lp-testimonial-grid blockquote {
  margin: 1rem 0 1.4rem;
  color: var(--lp-ink);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
}

.lp-testimonial-grid figcaption {
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-faq {
  background: #fff;
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.lp-faq-list {
  display: grid;
  gap: 0.8rem;
}

.lp-faq-list details {
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  background: #fafafa;
  padding: 1rem 1.15rem;
}

.lp-faq-list summary {
  cursor: pointer;
  color: var(--lp-ink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
}

.lp-faq-list summary::marker {
  color: var(--lp-accent);
}

.lp-faq-list p {
  margin: 0.75rem 0 0;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-footer {
  border-top: 1px solid #e8e8e8;
  background: #fafafa;
  color: var(--lp-ink);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.9fr;
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.lp-footer-desc,
.lp-footer-company,
.lp-footer-address,
.lp-footer-col-list,
.lp-footer-disclaimer,
.lp-footer-copy {
  color: var(--lp-muted);
}

.lp-footer-desc {
  max-width: 360px;
  margin: 1rem 0;
}

.lp-footer-col-title {
  margin: 0 0 1rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
}

.lp-footer-col-list {
  display: grid;
  gap: 0.55rem;
}

.lp-footer-col-list a:hover {
  color: var(--lp-accent);
}

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e0e0e0;
  padding: 1.2rem 0 1.6rem;
}

.form-honeypot {
  position: fixed;
  inset: auto;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .lp-hero {
    background: #fff;
  }

  .lp-form-panel {
    max-width: 720px;
  }

  .lp-card-grid,
  .lp-process-grid,
  .lp-testimonial-grid,
  .lp-footer-grid,
  .lp-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lp-trust-bar-inner,
  .lp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-trust-bar a {
    margin-left: 0;
  }

  .lp-hero {
    padding-top: 3.5rem;
  }

  .lp-field-row,
  .lp-stats-grid,
  .lp-hero-proof,
  .lp-package-grid,
  .lp-card-grid,
  .lp-process-grid,
  .lp-testimonial-grid,
  .lp-check-list,
  .lp-footer-grid,
  .lp-summary-grid {
    grid-template-columns: 1fr;
  }

  .lp-process-grid article::after {
    display: none;
  }

  .lp-image-card {
    min-height: auto;
  }

  .lp-image-card img {
    height: 360px;
  }
}

/* Figma polish + mobile hardening */
:is(.page-landing, .page-white) {
  --lp-max: 1210px;
  --lp-radius: 32px;
  --lp-soft: #fafafa;
  background: #fff;
}

:is(.page-landing, .page-white) .container {
  max-width: var(--lp-max);
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.lp-header {
  border-bottom: 1px solid rgba(38, 38, 38, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(38, 38, 38, 0.045);
}

.lp-header-inner {
  min-height: 74px;
  gap: 1.25rem;
}

.lp-logo {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lp-logo .icon {
  width: 20px;
  height: 20px;
}

.lp-header-nav {
  gap: 0.35rem;
}

.lp-header-link,
.lp-header-cta {
  min-height: 40px;
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  color: #262626;
  font-size: 0.9rem;
  font-weight: 600;
}

.lp-header-link:hover {
  color: #262626;
  background: #f2f4f7;
}

.lp-header-cta {
  color: #fff;
  background: var(--lp-accent);
  padding-inline: 1.05rem;
}

.lp-trust-bar-inner {
  min-height: 42px;
  padding-block: 0.55rem;
  font-size: 0.86rem;
}

.lp-hero {
  padding: clamp(3.5rem, 6vw, 5.8rem) 0 4rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(243, 81, 32, 0.08), transparent 20rem),
    linear-gradient(90deg, #fff 0%, #fff 60%, #f1f1f1 60%, #f1f1f1 100%);
}

.lp-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.58fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.2rem);
}

.lp-eyebrow,
.lp-form-kicker {
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-eyebrow::before,
.lp-form-kicker::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.lp-hero h1 {
  max-width: 720px;
  margin-top: 0;
  font-size: clamp(3.05rem, 5.2vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.lp-lead {
  max-width: 640px;
  margin-top: 1.15rem;
  color: #484848;
  font-size: 1.02rem;
}

.lp-hero-list:not(.lp-hero-list--figma) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.45rem;
  text-transform: none;
}

.lp-hero-list:not(.lp-hero-list--figma) li {
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.85rem 0.85rem 0.85rem 1.55rem;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 12px 30px rgba(38, 38, 38, 0.045);
}

.lp-hero-list:not(.lp-hero-list--figma) li::before {
  left: 0.75rem;
}

.lp-hero-actions {
  margin-top: 1.45rem;
  gap: 0.7rem;
}

.lp-btn,
.lp-submit,
.lp-form-reset {
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.lp-hero-proof {
  gap: 0.65rem;
  margin-top: 1rem;
}

.lp-hero-proof div,
.lp-package-preview {
  border-color: #e4e7ec;
  box-shadow: 0 18px 50px rgba(38, 38, 38, 0.06);
}

.lp-package-preview {
  border-radius: 22px;
}

.lp-package-grid span {
  color: #344054;
  background: #fff;
}

.lp-form-panel {
  border-color: #e4e7ec;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(38, 38, 38, 0.13);
  padding: 1.45rem;
}

.lp-form-panel::before {
  inset: -12px -12px auto auto;
  height: 150px;
  border-radius: 28px;
}

.lp-form-title {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.lp-form-lead {
  margin-bottom: 1rem;
}

.lp-form-steps,
.lp-form-note {
  border-radius: 16px;
}

.lp-form {
  gap: 0.75rem;
}

.lp-label {
  margin-bottom: 0.28rem;
  font-size: 0.82rem;
}

.lp-input,
.lp-textarea {
  border-radius: 14px;
  padding: 0.72rem 0.85rem;
}

.lp-phone-prefix {
  border-radius: 14px 0 0 14px;
}

.lp-phone-national {
  border-radius: 0 14px 14px 0;
}

.lp-partner-strip,
.lp-summary-band {
  background: #262626;
}

.lp-stats-grid {
  padding-block: 2rem;
}

.lp-stats-grid strong {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.lp-summary-grid {
  padding-block: 2.15rem;
}

.lp-section {
  padding: clamp(4rem, 7vw, 6.2rem) 0;
}

.lp-section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.lp-section-copy h2,
.lp-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.1;
}

.lp-split,
.lp-split--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.lp-image-card {
  min-height: auto;
}

.lp-image-card span {
  border-radius: 28px;
}

.lp-image-card img,
.lp-image-card--wide img {
  height: min(470px, 48vw);
  border-radius: 28px;
}

.lp-card-grid {
  gap: 1rem;
}

.lp-info-card,
.lp-testimonial-grid figure,
.lp-process-grid article,
.lp-faq-list details {
  border-color: #e4e7ec;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(38, 38, 38, 0.055);
}

.lp-info-card {
  padding: 1.45rem;
}

.lp-info-card span {
  font-size: 1.75rem;
}

.lp-info-card h3 {
  margin-top: 1rem;
  font-size: 1.18rem;
}

.lp-process-grid {
  gap: 0.85rem;
}

.lp-process-grid article {
  padding: 1.25rem;
}

.lp-cta-image {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.lp-cta-image h2 {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.lp-footer-grid {
  grid-template-columns: 1.3fr 0.75fr 0.85fr 0.85fr 0.9fr;
  gap: 1.5rem;
  padding: 3rem 0 2rem;
}

.lp-footer-col-title {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-footer-col-list {
  gap: 0.4rem;
}

.lp-footer-col-list a,
.lp-footer-desc,
.lp-footer-address,
.lp-footer-copy,
.lp-footer-disclaimer {
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .lp-header-inner {
    min-height: auto;
    padding-block: 0.8rem;
  }

  .lp-header-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .lp-hero {
    background: #fff;
  }

  .lp-form-panel {
    max-width: 680px;
  }

  .lp-hero-list:not(.lp-hero-list--figma),
  .lp-hero-proof,
  .lp-card-grid,
  .lp-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :is(.page-landing, .page-white) .container {
    padding-inline: 1rem;
  }

  .lp-header {
    position: sticky;
    top: 0;
  }

  .lp-header-inner {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
  }

  .lp-burger {
    display: inline-flex;
    margin-left: auto;
  }

  .lp-header-nav {
    position: fixed;
    top: 64px;
    left: 1rem;
    right: 1rem;
    z-index: 110;
    display: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    padding: 0.8rem;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
    overflow: visible;
    scrollbar-width: auto;
  }

  .lp-header-nav.is-open {
    display: flex;
  }

  .lp-header-link,
  .lp-header-cta {
    flex: 0 0 auto;
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
    white-space: normal;
  }

  .lp-header-cta {
    justify-content: center;
  }

  .lp-trust-bar-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
  }

  .lp-trust-bar a {
    grid-column: 2;
  }

  .lp-hero {
    padding: 2.4rem 0 2.7rem;
  }

  .lp-top-visual {
    width: 100%;
    margin-bottom: 1.6rem;
    border-radius: 20px;
  }

  .lp-top-visual img {
    max-height: 220px;
  }

  .lp-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .lp-lead {
    font-size: 0.98rem;
  }

  .lp-hero-list:not(.lp-hero-list--figma),
  .lp-hero-proof,
  .lp-package-grid,
  .lp-stats-grid,
  .lp-summary-grid,
  .lp-card-grid,
  .lp-process-grid,
  .lp-testimonial-grid,
  .lp-check-list,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-package-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .lp-form-panel {
    border-radius: 24px;
    padding: 1rem;
  }

  .lp-form-panel::before {
    display: none;
  }

  .lp-field-row {
    grid-template-columns: 1fr;
  }

  .lp-summary-grid {
    gap: 1rem;
  }

  .lp-section {
    padding: 3.2rem 0;
  }

  .lp-image-card img,
  .lp-image-card--wide img {
    height: 300px;
  }

  .lp-process-grid article::after {
    display: none;
  }

  .lp-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

@media (max-width: 420px) {
  .lp-top-visual img {
    max-height: 170px;
  }

  .lp-hero h1 {
    font-size: 2.15rem;
  }

  .lp-btn,
  .lp-submit,
  .lp-form-reset {
    width: 100%;
  }

  .lp-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Mobile menu hard override */
@media (max-width: 900px) {
  .lp-header {
    position: sticky;
    top: 0;
  }

  .lp-header-inner {
    min-height: 64px;
    flex-direction: row !important;
    align-items: center !important;
  }

  .lp-burger {
    display: inline-flex !important;
    margin-left: auto;
  }

  .lp-header-nav {
    position: fixed !important;
    top: 64px !important;
    left: 1rem !important;
    right: 1rem !important;
    z-index: 110 !important;
    display: none !important;
    width: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    padding: 0.8rem;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
  }

  .lp-header-nav.is-open {
    display: flex !important;
  }

  .lp-header-link,
  .lp-header-cta {
    width: 100% !important;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0.75rem 0.9rem;
    white-space: normal;
  }

  .lp-header-cta {
    justify-content: center;
  }
}

/* Information page mobile overflow guard */
@media (max-width: 900px) {
  html,
  body:is(.page-landing, .page-white) {
    max-width: 100%;
    overflow-x: hidden;
  }

  body:is(.page-landing, .page-white) *,
  body:is(.page-landing, .page-white) *::before,
  body:is(.page-landing, .page-white) *::after {
    box-sizing: border-box;
  }

  body:is(.page-landing, .page-white) .container,
  body:is(.page-landing, .page-white) .lp-main,
  body:is(.page-landing, .page-white) .lp-hero,
  body:is(.page-landing, .page-white) .lp-hero-grid,
  body:is(.page-landing, .page-white) .lp-hero-copy,
  body:is(.page-landing, .page-white) .lp-form-panel,
  body:is(.page-landing, .page-white) .lp-top-visual,
  body:is(.page-landing, .page-white) .lp-trust-bar-inner {
    min-width: 0;
    max-width: 100%;
  }

  body:is(.page-landing, .page-white) .container {
    padding-inline: 1rem;
  }

  body:is(.page-landing, .page-white) .lp-trust-bar-inner {
    align-items: start;
    overflow-wrap: anywhere;
  }

  body:is(.page-landing, .page-white) .lp-trust-bar p,
  body:is(.page-landing, .page-white) .lp-trust-bar a {
    min-width: 0;
    max-width: 100%;
  }

  body:is(.page-landing, .page-white) .lp-trust-bar a {
    white-space: normal;
  }

  body:is(.page-landing, .page-white) .lp-top-visual {
    width: 100%;
    margin-inline: 0;
    overflow: hidden;
  }

  body:is(.page-landing, .page-white) .lp-top-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  body:is(.page-landing, .page-white) .lp-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  body:is(.page-landing, .page-white) .lp-lead,
  body:is(.page-landing, .page-white) .lp-hero-list:not(.lp-hero-list--figma),
  body:is(.page-landing, .page-white) .lp-provider {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  body:is(.page-landing, .page-white) .container {
    padding-inline: 0.85rem;
  }

  body:is(.page-landing, .page-white) .lp-hero h1 {
    font-size: clamp(1.8rem, 8.4vw, 2.25rem);
  }

  body:is(.page-landing, .page-white) .lp-top-visual img {
    max-height: 155px;
  }
}

/* Information page hard mobile viewport lock */
@media (max-width: 900px) {
  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body:is(.page-landing, .page-white) {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body:is(.page-landing, .page-white) .lp-header,
  body:is(.page-landing, .page-white) .lp-trust-bar,
  body:is(.page-landing, .page-white) .lp-hero,
  body:is(.page-landing, .page-white) .lp-section,
  body:is(.page-landing, .page-white) .lp-partner-strip,
  body:is(.page-landing, .page-white) .lp-summary-band,
  body:is(.page-landing, .page-white) .lp-cta-image,
  body:is(.page-landing, .page-white) .lp-footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body:is(.page-landing, .page-white) .container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1.25rem;
  }

  body:is(.page-landing, .page-white) .lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 0;
  }

  body:is(.page-landing, .page-white) .lp-logo {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  body:is(.page-landing, .page-white) .lp-logo span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body:is(.page-landing, .page-white) .lp-burger {
    grid-column: 2;
    width: 42px;
    height: 42px;
    margin-left: 0 !important;
  }

  body:is(.page-landing, .page-white) .lp-trust-bar-inner {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    column-gap: 0.65rem;
  }

  body:is(.page-landing, .page-white) .lp-trust-bar a {
    grid-column: 2;
    margin-left: 0;
  }

  body:is(.page-landing, .page-white) .lp-hero-grid,
  body:is(.page-landing, .page-white) .lp-split,
  body:is(.page-landing, .page-white) .lp-split--reverse,
  body:is(.page-landing, .page-white) .lp-summary-grid,
  body:is(.page-landing, .page-white) .lp-faq-grid {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  body:is(.page-landing, .page-white) .lp-top-visual {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  body:is(.page-landing, .page-white) .container {
    padding-inline: 1rem;
  }
}

/* Figma-aligned information-page form */
:is(.page-landing, .page-white) .lp-form-panel {
  border-color: #f35120;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(38, 38, 38, 0.12);
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
}

:is(.page-landing, .page-white) .lp-form-panel::before {
  display: none;
}

:is(.page-landing, .page-white) .lp-form-header {
  margin-bottom: 1.1rem;
}

:is(.page-landing, .page-white) .lp-form-kicker {
  color: #f35120;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-form-title {
  margin-top: 0.55rem;
  color: #262626;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
}

:is(.page-landing, .page-white) .lp-form-lead {
  margin: 0.65rem 0 0;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-form-steps {
  display: none;
}

:is(.page-landing, .page-white) .lp-question-title {
  display: block;
  color: #262626;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

:is(.page-landing, .page-white) .lp-question-title {
  margin: 0 0 0.5rem;
}

:is(.page-landing, .page-white) .lp-form-note {
  margin: 1rem 0 0;
  border: 1px solid #f1c644;
  border-radius: 26px;
  background: #fffdf3;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 0.75rem 1rem;
}

:is(.page-landing, .page-white) .lp-form {
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
}

:is(.page-landing, .page-white) .lp-field {
  min-width: 0;
  max-width: 100%;
}

:is(.page-landing, .page-white) .lp-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

:is(.page-landing, .page-white) .lp-input,
:is(.page-landing, .page-white) .lp-textarea,
:is(.page-landing, .page-white) .lp-select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 54px;
  border: 1px solid #f35120;
  border-radius: 50px;
  background: #fff;
  color: #262626;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.88rem 1.35rem;
}

:is(.page-landing, .page-white) .lp-input::placeholder,
:is(.page-landing, .page-white) .lp-textarea::placeholder {
  color: #484848;
  opacity: 1;
}

:is(.page-landing, .page-white) .lp-input:focus,
:is(.page-landing, .page-white) .lp-textarea:focus {
  border-color: #f35120;
  box-shadow: 0 0 0 4px rgba(243, 81, 32, 0.13);
}

:is(.page-landing, .page-white) .lp-textarea {
  min-height: 112px;
  border-radius: 28px;
  resize: vertical;
}

:is(.page-landing, .page-white) .lp-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #f35120 50%),
    linear-gradient(135deg, #f35120 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) 50%,
    calc(100% - 0.9rem) 50%;
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}

:is(.page-landing, .page-white) .lp-phone-input {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid #f35120;
  border-radius: 50px;
  background: #fff;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

:is(.page-landing, .page-white) .lp-phone-input:focus-within {
  border-color: #f35120;
  box-shadow: 0 0 0 4px rgba(243, 81, 32, 0.13);
}

:is(.page-landing, .page-white) .lp-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  border: 0;
  border-right: 1px solid rgba(243, 81, 32, 0.22);
  border-radius: 0;
  background: #fff7f4;
  color: #262626;
  padding: 0 0.85rem 0 1rem;
  min-height: 52px;
}

:is(.page-landing, .page-white) .lp-phone-prefix-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: #e04518;
}

:is(.page-landing, .page-white) .lp-phone-prefix-icon .ui-icon {
  width: 1.3rem;
  height: 1.3rem;
  stroke-width: 2.55;
}

:is(.page-landing, .page-white) .lp-phone-flag {
  flex-shrink: 0;
  width: 22px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

:is(.page-landing, .page-white) .lp-phone-code {
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

:is(.page-landing, .page-white) .lp-phone-national {
  flex: 1 1 0%;
  width: 0;
  min-width: 0;
  max-width: 100%;
  min-height: 52px;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent;
  padding: 0.88rem 1.25rem 0.88rem 1rem;
}

:is(.page-landing, .page-white) .lp-phone-national:focus {
  box-shadow: none !important;
}

:is(.page-landing, .page-white) .lp-phone-hint,
:is(.page-landing, .page-white) .lp-privacy {
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  line-height: 1.45;
}

:is(.page-landing, .page-white) .lp-consents {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.2rem;
}

:is(.page-landing, .page-white) .lp-consent {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  border: 1px solid #f1c644;
  border-radius: 22px;
  background: #fffdf3;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 0.78rem 0.9rem;
}

:is(.page-landing, .page-white) .lp-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.65rem;
  height: 1.65rem;
  margin: 0.05rem 0 0;
  border: 2.5px solid #e04518;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

:is(.page-landing, .page-white) .lp-consent input[type="checkbox"]:checked {
  border-color: #e04518;
  background: #e04518;
}

:is(.page-landing, .page-white) .lp-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 0.4rem;
  height: 0.78rem;
  border: solid #fff;
  border-width: 0 3.5px 3.5px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

:is(.page-landing, .page-white) .lp-consent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243, 81, 32, 0.18);
}

:is(.page-landing, .page-white) .lp-consent a {
  color: #f35120;
  font-weight: 600;
}

:is(.page-landing, .page-white) .lp-spam-note {
  margin: 0;
  border: 1px solid #e4e7ec;
  border-radius: 20px;
  background: #fafafa;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  line-height: 1.45;
  padding: 0.74rem 0.9rem;
}

:is(.page-landing, .page-white) .lp-spam-note strong {
  color: #262626;
}

:is(.page-landing, .page-white) .lp-submit {
  min-height: 54px;
  border-radius: 50px;
  background: #f35120;
  color: #fff;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-submit:hover {
  background: #c93f15;
}

@media (max-width: 760px) {
  :is(.page-landing, .page-white) .lp-form-panel {
    border-radius: 30px;
  }

  :is(.page-landing, .page-white) .lp-field-row {
    grid-template-columns: 1fr;
  }
}

/* Clear modern CTA band */
:is(.page-landing, .page-white) .lp-cta-image {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 81, 32, 0.26), transparent 18rem),
    radial-gradient(circle at 84% 80%, rgba(241, 198, 68, 0.16), transparent 16rem),
    linear-gradient(135deg, #101828 0%, #1f2937 52%, #262626 100%);
}

:is(.page-landing, .page-white) .lp-cta-image::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.28;
}

:is(.page-landing, .page-white) .lp-cta-inner {
  max-width: 820px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(16, 24, 40, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
  padding: clamp(2rem, 5vw, 3.5rem);
  backdrop-filter: blur(14px);
}

:is(.page-landing, .page-white) .lp-cta-image h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

:is(.page-landing, .page-white) .lp-cta-image p {
  max-width: 620px;
  margin: 1rem auto 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

:is(.page-landing, .page-white) .lp-cta-image .lp-btn {
  min-width: 230px;
  box-shadow: 0 18px 42px rgba(243, 81, 32, 0.28);
}

@media (max-width: 760px) {
  :is(.page-landing, .page-white) .lp-cta-image {
    padding: 3rem 0;
  }

  :is(.page-landing, .page-white) .lp-cta-inner {
    border-radius: 26px;
    padding: 1.55rem 1rem;
  }

  :is(.page-landing, .page-white) .lp-cta-image h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  :is(.page-landing, .page-white) .lp-cta-image p {
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
  }

  :is(.page-landing, .page-white) .lp-cta-image .lp-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Final mobile navigation override */
@media (max-width: 900px) {
  :is(.page-landing, .page-white) .lp-header {
    overflow: visible !important;
    z-index: 5000 !important;
  }

  :is(.page-landing, .page-white) .lp-header-inner {
    overflow: visible !important;
  }

  :is(.page-landing, .page-white) .lp-burger {
    position: relative;
    z-index: 5020 !important;
    display: inline-flex !important;
    pointer-events: auto;
  }

  :is(.page-landing, .page-white) .lp-header-nav {
    position: fixed !important;
    top: 72px !important;
    left: 1rem !important;
    right: 1rem !important;
    z-index: 5010 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    width: auto !important;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    padding: 0.8rem;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  :is(.page-landing, .page-white) .lp-header-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  :is(.page-landing, .page-white) .lp-nav-backdrop {
    z-index: 4990 !important;
  }
}

/* Apexmetrics Figma frame 37:375 alignment */
:is(.page-landing, .page-white) {
  --lp-max: 1410px;
}

:is(.page-landing, .page-white) .lp-logo--image {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0;
}

:is(.page-landing, .page-white) .lp-logo--image img {
  display: block;
  width: auto;
  height: 66px;
  max-width: min(210px, 42vw);
  object-fit: contain;
}

:is(.page-landing, .page-white) .lp-logo--footer img {
  height: 82px;
}

:is(.page-landing, .page-white) .lp-header {
  border-bottom: 1px solid #b6b6b6;
  background: #fff;
  box-shadow: none;
}

:is(.page-landing, .page-white) .lp-header-inner {
  min-height: 106px;
}

:is(.page-landing, .page-white) .lp-header-nav {
  gap: 2rem;
}

:is(.page-landing, .page-white) .lp-header-link {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #262626;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

:is(.page-landing, .page-white) .lp-header-link:hover {
  color: #f35120;
  background: transparent;
}

:is(.page-landing, .page-white) .lp-header-link--contact {
  font-weight: 400;
}

:is(.page-landing, .page-white) .lp-hero {
  padding: 1.5rem 0 3.5rem;
  background: #fff;
  overflow-x: clip;
}

:is(.page-landing, .page-white) .lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 732px);
  align-items: start;
  gap: clamp(1rem, 2vw, 2rem);
}

@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  :is(.page-landing, .page-white) .lp-split--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

:is(.page-landing, .page-white) .lp-hero-copy {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  margin-top: 0;
}

:is(.page-landing, .page-white) .lp-hero-detail {
  max-width: 608px;
  margin-top: 1rem;
}

:is(.page-landing, .page-white) .lp-hero-detail p {
  margin: 0 0 1rem;
  color: #484848;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

:is(.page-landing, .page-white) .lp-hero-detail p:last-of-type {
  margin-bottom: 0;
}

:is(.page-landing, .page-white) .lp-hero-benefits {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

:is(.page-landing, .page-white) .lp-hero-benefits li {
  position: relative;
  padding-left: 1rem;
  color: #484848;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f35120;
}

@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-hero-copy {
    padding-top: clamp(1.25rem, 2.5vw, 2rem);
  }

  :is(.page-landing, .page-white) .lp-hero h1 {
    margin-top: 1.65rem;
  }

  :is(.page-landing, .page-white) .lp-hero-detail {
    margin-top: 1rem;
  }

  :is(.page-landing, .page-white) .lp-hero-form-col {
    display: flex;
    flex-direction: column;
  }
}

:is(.page-landing, .page-white) .lp-hero-form-col {
  background: #f1f1f1;
  margin-right: calc(50% - 50vw);
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.5rem);
  padding-right: max(1.25rem, calc(50vw - 50% + 1.25rem));
}

:is(.page-landing, .page-white) .lp-hero h1 {
  max-width: 690px;
  margin-top: 0;
  font-family: var(--lp-font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-hero .lp-lead {
  max-width: 608px;
  margin: 1.25rem 0 0;
  color: #484848;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

:is(.page-landing, .page-white) .lp-hero-list--figma {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 607px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: #262626;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-hero-list--figma li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-transform: inherit;
}

:is(.page-landing, .page-white) .lp-hero-list--figma li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f35120;
}

:is(.page-landing, .page-white) .lp-hero-actions {
  margin-top: 1.5rem;
}

:is(.page-landing, .page-white) .lp-partner-strip {
  background: #262626;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

:is(.page-landing, .page-white) .lp-partner-strip__img {
  display: block;
  width: 100%;
  height: 141px;
  margin: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
}

:is(.page-landing, .page-white) .lp-inline-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #b6b6b6;
  width: 100%;
}

:is(.page-landing, .page-white) .lp-inline-stats .lp-stat-card,
:is(.page-landing, .page-white) .lp-inline-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

:is(.page-landing, .page-white) .lp-inline-stats .lp-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 0.65rem;
}

:is(.page-landing, .page-white) .lp-inline-stats strong {
  display: block;
  width: 100%;
  text-align: center;
  color: #262626;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.24;
}

:is(.page-landing, .page-white) .lp-inline-stats span:not(.lp-stat-icon) {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  text-align: center;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}

:is(.page-landing, .page-white) .lp-services-intro {
  max-width: 450px;
}

:is(.page-landing, .page-white) .lp-services-intro .lp-eyebrow {
  letter-spacing: 0;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-services-intro h2 {
  margin: 0.35rem 0 0;
  max-width: 450px;
  font-family: Inter, Roboto, system-ui, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8125rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-services-intro p {
  margin: 1.5rem 0 0;
  max-width: 450px;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-services-intro .lp-btn {
  margin-top: 1.75rem;
}

:is(.page-landing, .page-white) .lp-btn--compact {
  min-width: 208px;
  min-height: 54px;
  padding: 0 1.75rem;
  font-size: 1.125rem;
  font-weight: 400;
}

:is(.page-landing, .page-white) .lp-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 3.375rem;
  min-height: 0;
}

:is(.page-landing, .page-white) .lp-service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin: 0 0 1.25rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(243, 81, 32, 0.1) 0%, rgba(241, 198, 68, 0.12) 100%);
  color: var(--lp-accent);
  box-shadow: inset 0 0 0 1px rgba(243, 81, 32, 0.12);
}

:is(.page-landing, .page-white) .lp-service-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0;
  object-fit: contain;
}

:is(.page-landing, .page-white) .lp-service-card h3 {
  margin: 0 0 0.65rem;
  color: #262626;
  font-family: Inter, Roboto, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

:is(.page-landing, .page-white) .lp-service-card p {
  margin: 0;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-service-arrow {
  display: block;
  width: 30px;
  height: 30px;
  margin-top: 1.1rem;
  line-height: 0;
}

:is(.page-landing, .page-white) .lp-service-arrow img {
  display: block;
  width: 30px;
  height: 30px;
}

:is(.page-landing, .page-white) .lp-footer-brand .lp-logo--footer {
  display: block;
  margin: 0;
}

:is(.page-landing, .page-white) .lp-footer-brand .lp-logo--footer img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 180px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

:is(.page-landing, .page-white) .lp-footer-desc {
  margin: 0.85rem 0 0;
  max-width: 330px;
}

:is(.page-landing, .page-white) .lp-footer-social a {
  border-color: #262626;
  color: #262626;
  text-decoration: none;
}

:is(.page-landing, .page-white) .lp-cta-image {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: #262626 url("../img/landing/cta-bg.jpg") center/cover no-repeat;
}

:is(.page-landing, .page-white) .lp-cta-image::before {
  background: rgba(38, 38, 38, 0.6);
  opacity: 1;
}

:is(.page-landing, .page-white) .lp-cta-inner {
  max-width: 1133px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

:is(.page-landing, .page-white) .lp-cta-image h2 {
  max-width: none;
  font-family: var(--lp-font-heading);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

:is(.page-landing, .page-white) .lp-cta-image p {
  max-width: 626px;
  margin: 1.5rem auto 2rem;
  color: #fafafa;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

:is(.page-landing, .page-white) .lp-why {
  background: #fafafa;
}

:is(.page-landing, .page-white) .lp-why .lp-check-list {
  grid-auto-flow: row;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  justify-items: stretch;
  width: 100%;
}

:is(.page-landing, .page-white) .lp-image-card--why span {
  inset: 0 0 8% 12%;
}

:is(.page-landing, .page-white) .lp-counter-bar {
  background: #262626;
  color: #fff;
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid {
  padding-block: 4.5rem;
  text-align: center;
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid strong {
  color: #fff;
  text-align: center;
  width: 100%;
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid span:not(.lp-stat-icon) {
  text-align: center;
  width: 100%;
}

:is(.page-landing, .page-white) .lp-testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

:is(.page-landing, .page-white) .lp-testimonials-head .lp-section-heading {
  margin-bottom: 0;
}

:is(.page-landing, .page-white) .lp-testimonial-nav {
  display: flex;
  gap: 0.65rem;
}

:is(.page-landing, .page-white) .lp-testimonial-nav-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #b6b6b6;
  border-radius: 999px;
  background: #fff;
  color: #262626;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

:is(.page-landing, .page-white) .lp-testimonial-nav-btn:hover:not(:disabled),
:is(.page-landing, .page-white) .lp-testimonial-nav-btn:focus-visible:not(:disabled) {
  border-color: #f35120;
  color: #f35120;
}

:is(.page-landing, .page-white) .lp-testimonial-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

:is(.page-landing, .page-white) .lp-testimonial-slider {
  --lp-testimonial-visible: 3;
  --lp-testimonial-gap: 8px;
  --lp-testimonial-slide: calc((100% - (var(--lp-testimonial-visible) - 1) * var(--lp-testimonial-gap)) / var(--lp-testimonial-visible));
  overflow: hidden;
  width: 100%;
}

:is(.page-landing, .page-white) .lp-testimonial-track {
  display: flex;
  gap: var(--lp-testimonial-gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

:is(.page-landing, .page-white) .lp-testimonial-track figure {
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--lp-testimonial-slide);
  width: var(--lp-testimonial-slide);
  min-width: var(--lp-testimonial-slide);
  max-width: var(--lp-testimonial-slide);
  min-height: 0;
  margin: 0;
  border: 1px solid #b6b6b6;
  border-radius: 40px;
  background: #fff;
  padding: 1.35rem 1.25rem 1.15rem;
  transition: border-color 0.25s ease;
}

:is(.page-landing, .page-white) .lp-testimonial-track figure.is-active {
  border-color: #f35120;
}

:is(.page-landing, .page-white) .lp-stars {
  color: #f1c644;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

:is(.page-landing, .page-white) .lp-testimonial-track blockquote {
  flex: 1 1 auto;
  margin: 0.75rem 0 1rem;
  color: #262626;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0;
}

:is(.page-landing, .page-white) .lp-testimonial-track figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

:is(.page-landing, .page-white) .lp-testimonial-track figcaption img {
  width: 65px;
  height: 65px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

:is(.page-landing, .page-white) .lp-testimonial-track figcaption strong {
  display: block;
  color: #262626;
  font-family: var(--lp-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

:is(.page-landing, .page-white) .lp-testimonial-track figcaption span {
  display: block;
  margin-top: 0.2rem;
  color: #484848;
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-testimonials-head h2 {
  font-family: var(--lp-font-heading);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

:is(.page-landing, .page-white) .lp-testimonials {
  overflow-x: clip;
}

:is(.page-landing, .page-white) .lp-footer-grid {
  grid-template-columns: 1.2fr 0.75fr 1fr 1fr;
  gap: 2.5rem;
}

:is(.page-landing, .page-white) .lp-footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

:is(.page-landing, .page-white) .lp-footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #262626;
  border-radius: 999px;
  color: #262626;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: lowercase;
}

:is(.page-landing, .page-white) .lp-footer-subscribe-text {
  margin: 0 0 1rem;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

:is(.page-landing, .page-white) .lp-footer-subscribe-form {
  display: grid;
  gap: 0.75rem;
}

:is(.page-landing, .page-white) .lp-footer-email {
  width: 100%;
  min-height: 54px;
  border: 1px solid #f35120;
  border-radius: 50px;
  background: #fff;
  color: #484848;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
}

:is(.page-landing, .page-white) .lp-footer-subscribe-btn {
  width: 100%;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-footer-legal-links {
  margin: 0;
}

:is(.page-landing, .page-white) .lp-footer-legal-links a {
  color: #262626;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.125rem;
}

:is(.page-landing, .page-white) .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  :is(.page-landing, .page-white) .lp-inline-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  :is(.page-landing, .page-white) .lp-services-layout {
    grid-template-columns: 1fr;
  }

  :is(.page-landing, .page-white) .lp-service-card {
    padding-top: 0;
  }

  :is(.page-landing, .page-white) .lp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :is(.page-landing, .page-white) .lp-partner-strip__img {
    height: auto;
    min-height: 90px;
    max-height: 141px;
    object-fit: cover;
  }

  :is(.page-landing, .page-white) .lp-hero-form-col {
    margin-right: 0;
    padding-right: clamp(1rem, 4vw, 1.5rem);
  }
}

@media (max-width: 760px) {
  :is(.page-landing, .page-white) .lp-header-inner {
    min-height: 74px;
  }

  :is(.page-landing, .page-white) .lp-logo--image img {
    height: 48px;
  }

  :is(.page-landing, .page-white) .lp-hero {
    padding-top: 1rem;
  }

  :is(.page-landing, .page-white) .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  :is(.page-landing, .page-white) .lp-hero-form-col {
    margin-inline: 0;
    padding-inline: 1rem;
  }

  :is(.page-landing, .page-white) .lp-hero-list--figma {
    font-size: 0.9375rem;
  }

  :is(.page-landing, .page-white) .lp-testimonials-head {
    flex-direction: column;
    align-items: flex-start;
  }

  :is(.page-landing, .page-white) .lp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* === Figma canonical: typography + navigation (wins over legacy layers) === */
body:is(.page-landing, .page-white) {
  overflow-x: clip;
  max-width: 100%;
}

body:is(.page-landing, .page-white) .lp-main,
body:is(.page-landing, .page-white) .lp-footer {
  overflow-x: clip;
  max-width: 100%;
}

:is(.page-landing, .page-white) {
  --lp-max: 1410px;
  --lp-font-heading: "Inter", system-ui, sans-serif;
  --lp-font-body: "Inter", system-ui, sans-serif;
  --lp-text-body: 1rem;
  --lp-lh-body: 1.5;
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-body);
  line-height: var(--lp-lh-body);
  color: #262626;
}

:is(.page-landing, .page-white) h1,
:is(.page-landing, .page-white) h2,
:is(.page-landing, .page-white) h3,
:is(.page-landing, .page-white) .lp-footer-col-title {
  font-family: Inter, Roboto, system-ui, sans-serif;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-hero h1 {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

:is(.page-landing, .page-white) .lp-section-heading h2,
:is(.page-landing, .page-white) .lp-section-copy h2,
:is(.page-landing, .page-white) .lp-cta-image h2,
:is(.page-landing, .page-white) .lp-why h2 {
  font-family: var(--lp-font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-form-title {
  font-weight: 600;
}

:is(.page-landing, .page-white) p,
:is(.page-landing, .page-white) .lp-lead,
:is(.page-landing, .page-white) .lp-section-copy p,
:is(.page-landing, .page-white) .lp-section-heading p,
:is(.page-landing, .page-white) .lp-form-lead,
:is(.page-landing, .page-white) .lp-service-card p,
:is(.page-landing, .page-white) .lp-footer-desc,
:is(.page-landing, .page-white) .lp-footer-col-list a {
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #484848;
}

:is(.page-landing, .page-white) .lp-eyebrow,
:is(.page-landing, .page-white) .lp-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #f35120;
  font-family: Inter, Roboto, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-eyebrow::before,
:is(.page-landing, .page-white) .lp-form-kicker::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
}

:is(.page-landing, .page-white) .lp-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  border-bottom: 1px solid #b6b6b6;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

:is(.page-landing, .page-white) .lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 106px;
}

:is(.page-landing, .page-white) .lp-header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

:is(.page-landing, .page-white) .lp-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #262626 !important;
  font-family: Roboto, Inter, system-ui, sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none;
  text-transform: none !important;
  white-space: nowrap;
}

:is(.page-landing, .page-white) .lp-header-link--has-chevron::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.85;
}

:is(.page-landing, .page-white) .lp-header-link:hover,
:is(.page-landing, .page-white) .lp-header-link:focus-visible {
  color: #f35120;
  background: transparent;
}

:is(.page-landing, .page-white) .lp-btn,
:is(.page-landing, .page-white) .lp-submit,
:is(.page-landing, .page-white) .lp-form-reset {
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

:is(.page-landing, .page-white) .lp-label {
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-input,
:is(.page-landing, .page-white) .lp-textarea,
:is(.page-landing, .page-white) .lp-phone-national,
:is(.page-landing, .page-white) .lp-phone-prefix {
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-form-lead,
:is(.page-landing, .page-white) .lp-form-note {
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #484848;
}

:is(.page-landing, .page-white) .lp-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #b6b6b6;
  border-radius: 999px;
  background: #fff;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-nav-backdrop {
  z-index: 4990;
  background: rgba(22, 22, 22, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop: drawer chrome hidden, links inline */
@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-drawer-head,
  :is(.page-landing, .page-white) .lp-drawer-foot,
  :is(.page-landing, .page-white) .lp-drawer-close,
  :is(.page-landing, .page-white) .lp-drawer-link-arrow {
    display: none !important;
  }

  :is(.page-landing, .page-white) .lp-drawer-links {
    display: contents;
  }

  :is(.page-landing, .page-white) .lp-drawer-link-text {
    display: inline;
  }
}

@media (max-width: 991px) {
  :is(.page-landing, .page-white) .lp-burger {
    display: inline-flex !important;
    margin-left: auto;
    z-index: 5025;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-burger[aria-expanded="true"] {
    border-color: #f35120;
    background: #fff7f4;
    color: #f35120;
  }

  :is(.page-landing, .page-white) .lp-header-inner {
    min-height: 74px !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  :is(.page-landing, .page-white) .lp-logo--image img {
    height: 52px;
  }

  :is(.page-landing, .page-white) .lp-header-nav {
    position: fixed !important;
    top: 0 !important;
    right: calc(-1 * min(340px, 90vw)) !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 5010 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: min(340px, 90vw) !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 28px 0 0 28px !important;
    background:
      linear-gradient(165deg, #fff 0%, #fafafa 48%, #f5f5f5 100%) !important;
    box-shadow: -28px 0 80px rgba(38, 38, 38, 0.2) !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transform: none !important;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s ease !important;
  }

  :is(.page-landing, .page-white) .lp-header-nav.is-open {
    right: 0 !important;
    pointer-events: auto !important;
    box-shadow: -32px 0 96px rgba(38, 38, 38, 0.24) !important;
  }

  :is(.page-landing, .page-white) .lp-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
    padding: max(1.15rem, env(safe-area-inset-top)) 1.25rem 1.15rem;
    border-bottom: 1px solid rgba(38, 38, 38, 0.08);
    background:
      linear-gradient(135deg, rgba(243, 81, 32, 0.1) 0%, rgba(243, 81, 32, 0.02) 55%, transparent 100%);
  }

  :is(.page-landing, .page-white) .lp-drawer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
  }

  :is(.page-landing, .page-white) .lp-drawer-kicker {
    color: #f35120;
    font-family: Roboto, Inter, system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  :is(.page-landing, .page-white) .lp-drawer-title {
    color: #262626;
    font-family: Inter, Roboto, system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  :is(.page-landing, .page-white) .lp-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    background: #fff;
    color: #262626;
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  }

  :is(.page-landing, .page-white) .lp-drawer-close:hover,
  :is(.page-landing, .page-white) .lp-drawer-close:focus-visible {
    border-color: #f35120;
    color: #f35120;
    background: #fff7f4;
  }

  :is(.page-landing, .page-white) .lp-drawer-close .icon {
    width: 20px;
    height: 20px;
  }

  :is(.page-landing, .page-white) .lp-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1.15rem 1.1rem 0.75rem;
    -webkit-overflow-scrolling: touch;
  }

  :is(.page-landing, .page-white) .lp-drawer-link--contact {
    display: none !important;
  }

  :is(.page-landing, .page-white) .lp-header-link,
  :is(.page-landing, .page-white) .lp-header-link--contact {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    gap: 0.75rem;
    width: 100% !important;
    min-height: auto !important;
    padding: 0.95rem 1.05rem !important;
    border: 1px solid #ececec !important;
    border-radius: 16px !important;
    background: #fff !important;
    color: #262626 !important;
    font-family: Roboto, Inter, system-ui, sans-serif !important;
    font-size: 1.0625rem !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: normal !important;
    box-shadow: 0 2px 8px rgba(38, 38, 38, 0.04);
    opacity: 0;
    transform: translateX(12px);
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-header-nav.is-open .lp-header-link {
    opacity: 1;
    transform: translateX(0);
    transition:
      opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-header-nav:not(.is-open) .lp-header-link {
    transition-delay: 0s !important;
  }

  :is(.page-landing, .page-white) .lp-header-nav.is-open .lp-drawer-links .lp-header-link:nth-child(1) { transition-delay: 0.05s; }
  :is(.page-landing, .page-white) .lp-header-nav.is-open .lp-drawer-links .lp-header-link:nth-child(2) { transition-delay: 0.1s; }
  :is(.page-landing, .page-white) .lp-header-nav.is-open .lp-drawer-links .lp-header-link:nth-child(3) { transition-delay: 0.15s; }
  :is(.page-landing, .page-white) .lp-header-nav.is-open .lp-drawer-links .lp-header-link:nth-child(4) { transition-delay: 0.2s; }

  :is(.page-landing, .page-white) .lp-header-link:hover,
  :is(.page-landing, .page-white) .lp-header-link:focus-visible {
    color: #f35120 !important;
    border-color: rgba(243, 81, 32, 0.35) !important;
    background: #fffaf8 !important;
    box-shadow: 0 8px 20px rgba(243, 81, 32, 0.1) !important;
    transform: translateX(2px);
  }

  :is(.page-landing, .page-white) .lp-header-link--has-chevron::after {
    display: none !important;
  }

  :is(.page-landing, .page-white) .lp-drawer-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #f5f5f5;
    color: #484848;
    font-size: 0.9rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-header-link:hover .lp-drawer-link-arrow,
  :is(.page-landing, .page-white) .lp-header-link:focus-visible .lp-drawer-link-arrow {
    background: rgba(243, 81, 32, 0.12);
    color: #f35120;
  }

  :is(.page-landing, .page-white) .lp-drawer-foot {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.1rem max(1.25rem, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(38, 38, 38, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  :is(.page-landing, .page-white) .lp-drawer-foot-note {
    margin: 0;
    color: #484848;
    font-family: Roboto, Inter, system-ui, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  :is(.page-landing, .page-white) .lp-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f35120 0%, #e04a1c 100%);
    box-shadow: 0 12px 28px rgba(243, 81, 32, 0.28);
    color: #fff;
    font-family: Roboto, Inter, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }

  :is(.page-landing, .page-white) .lp-drawer-cta:hover,
  :is(.page-landing, .page-white) .lp-drawer-cta:focus-visible {
    background: linear-gradient(135deg, #e04a1c 0%, #c93f15 100%);
    box-shadow: 0 16px 32px rgba(243, 81, 32, 0.34);
    transform: translateY(-1px);
    color: #fff;
  }

  :is(.page-landing, .page-white) .lp-nav-backdrop {
    z-index: 4990 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  @media (max-width: 991px) {
    :is(.page-landing, .page-white) .lp-header-nav,
    :is(.page-landing, .page-white) .lp-nav-backdrop {
      transition: none !important;
    }

    :is(.page-landing, .page-white) .lp-header-link {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
}

/* Hero + CTA typography lock – body copy uses Roboto like CTA band */
:is(.page-landing, .page-white) .lp-hero h1 {
  font-family: var(--lp-font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-hero-copy {
    padding-top: clamp(1.25rem, 2.5vw, 2rem);
  }

  :is(.page-landing, .page-white) .lp-hero h1 {
    margin-top: 1.65rem;
  }
}

:is(.page-landing, .page-white) .lp-hero .lp-lead,
:is(.page-landing, .page-white) .lp-hero-list--figma,
:is(.page-landing, .page-white) .lp-hero-list--figma li,
:is(.page-landing, .page-white) .lp-cta-image p {
  font-family: var(--lp-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

:is(.page-landing, .page-white) .lp-cta-image h2 {
  font-family: var(--lp-font-heading);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #fff;
}

:is(.page-landing, .page-white) .lp-cta-image p {
  color: #fafafa;
}

/* === Mobile canonical fixes (wins over all legacy layers) === */
@media (max-width: 991px) {
  html,
  body:is(.page-landing, .page-white) {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body:is(.page-landing, .page-white) .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 1.25rem !important;
  }

  body:is(.page-landing, .page-white) .lp-header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 72px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body:is(.page-landing, .page-white) .lp-logo--image {
    flex: 1 1 auto;
    min-width: 0;
  }

  body:is(.page-landing, .page-white) .lp-logo--image img {
    height: 48px;
    max-width: min(180px, 52vw);
  }

  body:is(.page-landing, .page-white) .lp-burger {
    flex: 0 0 auto;
    margin-left: auto !important;
  }

  body:is(.page-landing, .page-white) .lp-hero,
  body:is(.page-landing, .page-white) .lp-hero-grid,
  body:is(.page-landing, .page-white) .lp-hero-copy,
  body:is(.page-landing, .page-white) .lp-hero-form-col,
  body:is(.page-landing, .page-white) .lp-form-panel,
  body:is(.page-landing, .page-white) .lp-split,
  body:is(.page-landing, .page-white) .lp-split--reverse,
  body:is(.page-landing, .page-white) .lp-services-layout,
  body:is(.page-landing, .page-white) .lp-testimonial-slider,
  body:is(.page-landing, .page-white) .lp-footer-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  :is(.page-landing, .page-white) .lp-hero {
    padding: 1.25rem 0 2.5rem;
    background: #fff;
    overflow-x: clip;
  }

  :is(.page-landing, .page-white) .lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  :is(.page-landing, .page-white) .lp-hero h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(1.65rem, 6.2vw, 2.15rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.01em !important;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  :is(.page-landing, .page-white) .lp-hero .lp-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-hero-detail {
    display: none !important;
  }

  :is(.page-landing, .page-white) .lp-hero-list--figma,
  :is(.page-landing, .page-white) .lp-hero-list--figma li {
    max-width: 100%;
    font-size: 0.9375rem;
    line-height: 1.45;
    text-transform: none;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-hero-actions {
    margin-top: 1.25rem;
  }

  :is(.page-landing, .page-white) .lp-hero-actions .lp-btn {
    width: 100%;
    min-height: 54px;
  }

  :is(.page-landing, .page-white) .lp-hero-form-col {
    margin-inline: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  :is(.page-landing, .page-white) .lp-form-panel {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  :is(.page-landing, .page-white) .lp-form-header {
    max-width: 100%;
  }

  :is(.page-landing, .page-white) .lp-form-title {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-form-lead,
  :is(.page-landing, .page-white) .lp-form-note {
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-form,
  :is(.page-landing, .page-white) .lp-field,
  :is(.page-landing, .page-white) .lp-consents {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  :is(.page-landing, .page-white) .lp-input,
  :is(.page-landing, .page-white) .lp-textarea,
  :is(.page-landing, .page-white) .lp-select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-inline: 1rem;
    font-size: 16px;
  }

  :is(.page-landing, .page-white) .lp-select {
    padding-right: 2.25rem;
    text-overflow: ellipsis;
  }

  :is(.page-landing, .page-white) .lp-question-title {
    display: none;
  }

  :is(.page-landing, .page-white) .lp-phone-input {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 54px;
    overflow: hidden;
    border: 1px solid #f35120;
    border-radius: 50px;
  }

  :is(.page-landing, .page-white) .lp-phone-prefix {
    flex: 0 0 auto;
    padding: 0 0.65rem 0 0.85rem;
    min-height: 52px;
    gap: 0.35rem;
  }

  :is(.page-landing, .page-white) .lp-phone-prefix-icon .ui-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.55;
  }

  :is(.page-landing, .page-white) .lp-phone-code {
    font-size: 0.875rem;
  }

  :is(.page-landing, .page-white) .lp-phone-national {
    flex: 1 1 0% !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 52px;
    padding: 0.88rem 1rem 0.88rem 0.85rem !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  :is(.page-landing, .page-white) .lp-consent {
    font-size: 0.8125rem;
    line-height: 1.5;
    padding: 0.85rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-consent span {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  :is(.page-landing, .page-white) .lp-spam-note {
    font-size: 0.8125rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-submit {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    box-sizing: border-box;
  }

  :is(.page-landing, .page-white) .lp-section {
    padding: 3rem 0;
  }

  :is(.page-landing, .page-white) .lp-split,
  :is(.page-landing, .page-white) .lp-split--reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  :is(.page-landing, .page-white) .lp-split--reverse .lp-section-copy {
    order: 1;
  }

  :is(.page-landing, .page-white) .lp-split--reverse .lp-image-card {
    order: 2;
  }

  :is(.page-landing, .page-white) .lp-image-card {
    min-height: 0;
  }

  :is(.page-landing, .page-white) .lp-image-card img,
  :is(.page-landing, .page-white) .lp-image-card--wide img {
    height: min(320px, 58vw);
    min-height: 220px;
  }

  :is(.page-landing, .page-white) .lp-inline-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 0;
    border-top: 0;
    width: 100%;
  }

  :is(.page-landing, .page-white) .lp-inline-stats .lp-stat-card,
  :is(.page-landing, .page-white) .lp-inline-stats > div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.35rem;
    box-sizing: border-box;
    min-width: 0;
    min-height: 6.25rem;
    height: 100%;
    padding: 1rem 0.9rem 0.95rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 16px;
    background: linear-gradient(160deg, #fff 0%, #fafafa 100%);
    box-shadow: 0 6px 22px rgba(38, 38, 38, 0.06);
    overflow: hidden;
  }

  :is(.page-landing, .page-white) .lp-inline-stats .lp-stat-icon {
    width: 2.55rem;
    height: 2.55rem;
    margin: 0 0 0.5rem;
    border-radius: 12px;
    flex: 0 0 auto;
    align-self: center;
  }

  :is(.page-landing, .page-white) .lp-inline-stats .lp-stat-icon .ui-icon {
    width: 1.3rem;
    height: 1.3rem;
    stroke-width: 2.45;
  }

  :is(.page-landing, .page-white) .lp-inline-stats .lp-stat-card::before,
  :is(.page-landing, .page-white) .lp-inline-stats > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f35120 0%, #f1c644 100%);
  }

  :is(.page-landing, .page-white) .lp-inline-stats strong {
    display: block;
    width: 100%;
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
  }

  :is(.page-landing, .page-white) .lp-inline-stats span:not(.lp-stat-icon) {
    display: block;
    width: 100%;
    margin-top: 0;
    font-size: clamp(0.6875rem, 2.9vw, 0.8125rem);
    line-height: 1.35;
    text-align: center;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-section-copy .lp-btn,
  :is(.page-landing, .page-white) .lp-why .lp-btn {
    width: 100%;
    min-height: 54px;
  }

  :is(.page-landing, .page-white) .lp-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.15rem 1.15rem !important;
    padding-top: 1.25rem !important;
    border: 1px solid rgba(38, 38, 38, 0.07);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(38, 38, 38, 0.06);
    overflow: hidden;
    min-height: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f35120 0%, #f1c644 100%);
  }

  :is(.page-landing, .page-white) .lp-service-card:hover,
  :is(.page-landing, .page-white) .lp-service-card:focus-within {
    border-color: rgba(243, 81, 32, 0.22);
    box-shadow: 0 14px 36px rgba(243, 81, 32, 0.1);
    transform: translateY(-2px);
  }

  :is(.page-landing, .page-white) .lp-service-icon-wrap {
    margin: 0 auto 1rem;
    align-self: center;
  }

  :is(.page-landing, .page-white) .lp-service-icon {
    width: 28px;
    height: 28px;
  }

  :is(.page-landing, .page-white) .lp-service-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.125rem;
    line-height: 1.28;
    letter-spacing: -0.01em;
    max-width: 100%;
  }

  :is(.page-landing, .page-white) .lp-service-card p,
  :is(.page-landing, .page-white) .lp-service-points li > span:last-child {
    flex: 1 1 auto;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #484848;
  }

  :is(.page-landing, .page-white) .lp-service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 44px;
    height: 44px;
    margin-top: 1.15rem;
    border: 1.5px solid #f35120;
    border-radius: 999px;
    background: #fff;
    line-height: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-service-arrow img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  :is(.page-landing, .page-white) .lp-service-card:hover .lp-service-arrow,
  :is(.page-landing, .page-white) .lp-service-card:focus-within .lp-service-arrow {
    background: #fff7f4;
    border-color: #e04a1c;
    transform: translateX(3px);
  }

  :is(.page-landing, .page-white) .lp-services {
    background: #fafafa;
  }

  :is(.page-landing, .page-white) .lp-services-intro {
    max-width: none;
    margin-bottom: 0.25rem;
  }

  :is(.page-landing, .page-white) .lp-services-intro h2 {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  :is(.page-landing, .page-white) .lp-services-intro p,
  :is(.page-landing, .page-white) .lp-services-points li > span:last-child {
    max-width: none;
    font-size: 0.9375rem;
  }

  :is(.page-landing, .page-white) .lp-services-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding-block: 2rem;
    text-align: center;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid > div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 5.75rem;
    padding: 1rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stat-icon {
    width: 2.55rem;
    height: 2.55rem;
    margin: 0 0 0.4rem;
    border-radius: 12px;
    align-self: center;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f35120 0%, #f1c644 100%);
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid strong {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid span:not(.lp-stat-icon) {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    width: 100%;
  }

  :is(.page-landing, .page-white) .lp-services-intro .lp-btn,
  :is(.page-landing, .page-white) .lp-btn--compact {
    width: 100%;
    min-width: 0;
  }

  :is(.page-landing, .page-white) .lp-cta-image {
    padding: 3rem 0;
  }

  :is(.page-landing, .page-white) .lp-cta-inner {
    padding: 0;
  }

  :is(.page-landing, .page-white) .lp-cta-image h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  :is(.page-landing, .page-white) .lp-cta-image p {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }

  :is(.page-landing, .page-white) .lp-cta-image .lp-btn {
    width: 100%;
    min-width: 0;
  }

  :is(.page-landing, .page-white) .lp-why .lp-section-copy {
    text-align: left;
  }

  :is(.page-landing, .page-white) .lp-why .lp-check-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0.75rem;
    width: 100%;
    margin: 1.5rem 0 0;
    padding: 0;
    justify-items: stretch;
  }

  :is(.page-landing, .page-white) .lp-why .lp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 14px;
    background: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
  }

  :is(.page-landing, .page-white) .lp-why .lp-check-list li::before {
    display: none !important;
  }

  :is(.page-landing, .page-white) .lp-why .lp-check-icon {
    flex-shrink: 0;
    margin-top: 0.08rem;
  }

  :is(.page-landing, .page-white) .lp-why .lp-btn {
    align-self: stretch;
    justify-content: center;
  }

  :is(.page-landing, .page-white) .lp-testimonials-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  :is(.page-landing, .page-white) .lp-testimonial-track figure {
    border-radius: 24px;
    padding: 1.15rem 1rem;
  }

  :is(.page-landing, .page-white) .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  :is(.page-landing, .page-white) .lp-footer-desc {
    max-width: none;
  }

  :is(.page-landing, .page-white) .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  :is(.page-landing, .page-white) .lp-footer-legal-links a {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  body:is(.page-landing, .page-white) .container {
    padding-inline: 1rem !important;
  }

  :is(.page-landing, .page-white) .lp-form-panel {
    border-radius: 22px;
    padding: 0.85rem;
  }

  :is(.page-landing, .page-white) .lp-input,
  :is(.page-landing, .page-white) .lp-select {
    padding-inline: 0.85rem;
    border-radius: 40px;
  }

  :is(.page-landing, .page-white) .lp-phone-input {
    border-radius: 40px;
    min-height: 54px;
  }

  :is(.page-landing, .page-white) .lp-phone-prefix {
    border-radius: 0 !important;
    padding: 0 0.65rem 0 0.85rem;
    min-height: 52px;
  }

  :is(.page-landing, .page-white) .lp-phone-national {
    border-radius: 0 !important;
    padding: 0.88rem 1rem 0.88rem 0.85rem !important;
    min-height: 52px;
  }

  :is(.page-landing, .page-white) .lp-inline-stats {
    gap: 0.6rem;
  }

  :is(.page-landing, .page-white) .lp-inline-stats .lp-stat-card,
  :is(.page-landing, .page-white) .lp-inline-stats > div {
    min-height: 5.75rem;
    padding: 0.8rem 0.7rem;
  }

  :is(.page-landing, .page-white) .lp-inline-stats strong {
    font-size: clamp(1.25rem, 5.2vw, 1.5rem);
  }

  :is(.page-landing, .page-white) .lp-inline-stats span:not(.lp-stat-icon) {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding-block: 1.75rem;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid > div {
    min-height: 5.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.35rem;
    padding: 0.85rem 0.75rem;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stat-icon {
    width: 2.55rem;
    height: 2.55rem;
    margin: 0 0 0.35rem;
    border-radius: 12px;
    align-self: center;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stat-icon .ui-icon {
    width: 1.3rem;
    height: 1.3rem;
    stroke-width: 2.45;
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid strong {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid span:not(.lp-stat-icon) {
    margin-top: 0;
    text-align: center;
    width: 100%;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  :is(.page-landing, .page-white) .lp-service-card {
    padding: 1.1rem 1rem 1rem !important;
    border-radius: 18px;
  }

  :is(.page-landing, .page-white) .lp-service-card h3 {
    font-size: 1.0625rem;
  }

  :is(.page-landing, .page-white) .lp-service-card p,
  :is(.page-landing, .page-white) .lp-service-points li > span:last-child {
    font-size: 0.875rem;
  }

  :is(.page-landing, .page-white) .lp-service-arrow {
    width: 40px;
    height: 40px;
    margin-top: 1rem;
  }

  :is(.page-landing, .page-white) .lp-section-copy h2,
  :is(.page-landing, .page-white) .lp-section-heading h2,
  :is(.page-landing, .page-white) .lp-services-intro h2 {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }
}

/* === Professional icon system (desktop + mobile) === */
.ui-icon {
  display: block;
  flex-shrink: 0;
  stroke-width: 2.35;
}

.lp-kicker-icon,
.lp-note-icon,
.lp-stat-icon,
.lp-bullet-icon,
.lp-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lp-accent, #f35120);
}

.lp-form-kicker:has(.lp-kicker-icon)::before,
.lp-eyebrow:has(.lp-kicker-icon)::before {
  display: none;
}

.lp-form-kicker .lp-kicker-icon,
.lp-eyebrow .lp-kicker-icon {
  width: 1.3rem;
  height: 1.3rem;
}

.lp-form-kicker .lp-kicker-icon .ui-icon,
.lp-eyebrow .lp-kicker-icon .ui-icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.5;
}

.lp-form-note--icon {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.lp-form-note--icon .lp-note-icon {
  margin-top: 0.05rem;
  width: 1.3rem;
  height: 1.3rem;
  color: #e04518;
}

.lp-form-note--icon .lp-note-icon .ui-icon,
:is(.page-landing, .page-white) .lp-spam-note .lp-note-icon .ui-icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.5;
}

:is(.page-landing, .page-white) .lp-spam-note .lp-note-icon {
  width: 1.3rem;
  height: 1.3rem;
  color: #e04518;
}

.lp-input-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.lp-input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #e04518;
  pointer-events: none;
  transform: translateY(-50%);
}

.lp-input-icon .ui-icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 2.55;
}

.lp-field--textarea .lp-input-icon {
  top: 1.05rem;
  transform: none;
}

:is(.page-landing, .page-white) .lp-field--icon .lp-input,
:is(.page-landing, .page-white) .lp-field--icon .lp-textarea,
:is(.page-landing, .page-white) .lp-field--icon .lp-select {
  padding-left: 3.25rem;
}

.lp-field--phone .lp-input-wrap--phone {
  flex: 1 1 0%;
  min-width: 0;
}

.lp-bullet-icon {
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.08rem;
  border-radius: 999px;
  color: #fff;
  background: #f35120;
  box-shadow: 0 2px 10px rgba(243, 81, 32, 0.34);
}

.lp-bullet-icon .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 3;
}

.lp-check-icon {
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.03rem;
  border-radius: 999px;
  color: #fff;
  background: #f35120;
  box-shadow: 0 2px 10px rgba(243, 81, 32, 0.34);
}

.lp-check-icon .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 3;
}

:is(.page-landing, .page-white) .lp-form-success-icon {
  font-size: 0;
}

:is(.page-landing, .page-white) .lp-form-success-icon .ui-icon {
  width: 2rem;
  height: 2rem;
  color: #fff;
  stroke-width: 2.5;
}

:is(.page-landing, .page-white) .lp-submit,
:is(.page-landing, .page-white) .lp-btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

:is(.page-landing, .page-white) .lp-submit .ui-icon,
:is(.page-landing, .page-white) .lp-btn--icon .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
}

:is(.page-landing, .page-white) .lp-hero-list--figma li,
:is(.page-landing, .page-white) .lp-hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0 !important;
}

:is(.page-landing, .page-white) .lp-hero-list--figma li::before,
:is(.page-landing, .page-white) .lp-hero-benefits li::before {
  display: none !important;
}

:is(.page-landing, .page-white) .lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
}

:is(.page-landing, .page-white) .lp-check-list li::before {
  display: none !important;
}

.lp-stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.65rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(243, 81, 32, 0.12) 0%, rgba(241, 198, 68, 0.14) 100%);
  box-shadow: inset 0 0 0 1px rgba(243, 81, 32, 0.16);
}

.lp-stat-icon .ui-icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 2.45;
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stat-icon,
:is(.page-landing, .page-white) .lp-stats-grid .lp-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 0.5rem;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stat-icon .ui-icon,
:is(.page-landing, .page-white) .lp-stats-grid .lp-stat-icon .ui-icon {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
  stroke-width: 2.45;
}

:is(.page-landing, .page-white) .lp-service-icon-wrap .ui-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2.4;
}

:is(.page-landing, .page-white) .lp-service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 1.1rem;
  border-radius: 999px;
  color: #f35120;
  background: rgba(243, 81, 32, 0.08);
  box-shadow: inset 0 0 0 1px rgba(243, 81, 32, 0.14);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

:is(.page-landing, .page-white) .lp-service-arrow .ui-icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.5;
}

:is(.page-landing, .page-white) .lp-service-card:hover .lp-service-arrow,
:is(.page-landing, .page-white) .lp-service-card:focus-within .lp-service-arrow {
  color: #fff;
  background: #f35120;
  transform: translateX(2px);
}

:is(.page-landing, .page-white) .lp-footer-col-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  color: #f35120;
}

.lp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-footer-social .ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.4;
}

:is(.page-landing, .page-white) .lp-spam-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

:is(.page-landing, .page-white) .lp-spam-note .lp-note-icon {
  flex-shrink: 0;
  margin-top: 0.05rem;
}

:is(.page-landing, .page-white) .lp-form-privacy.lp-form-note--icon {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

:is(.page-landing, .page-white) .lp-testimonial-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

:is(.page-landing, .page-white) .lp-testimonial-nav-btn .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
}

:is(.page-landing, .page-white) .lp-footer-legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 991px) {
  :is(.page-landing, .page-white) .lp-input-icon {
    left: 0.95rem;
    width: 1.45rem;
    height: 1.45rem;
  }

  :is(.page-landing, .page-white) .lp-input-icon .ui-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  :is(.page-landing, .page-white) .lp-field--icon .lp-input,
  :is(.page-landing, .page-white) .lp-field--icon .lp-textarea,
  :is(.page-landing, .page-white) .lp-field--icon .lp-select {
    padding-left: 3.1rem;
  }
}

/* Custom investment volume select */
:is(.page-landing, .page-white) .lp-volume-select {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

:is(.page-landing, .page-white) .lp-input-wrap--volume {
  min-width: 0;
  max-width: 100%;
}

:is(.page-landing, .page-white) .lp-volume-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.88rem 2.75rem 0.88rem 1.15rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #262626;
}

:is(.page-landing, .page-white) .lp-volume-select__trigger:focus {
  border-color: #f35120;
  box-shadow: 0 0 0 4px rgba(243, 81, 32, 0.13);
  outline: none;
}

:is(.page-landing, .page-white) .lp-volume-select.is-invalid .lp-volume-select__trigger,
:is(.page-landing, .page-white) .lp-volume-select__trigger[aria-invalid="true"] {
  border-color: #c62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.12);
}

:is(.page-landing, .page-white) .lp-volume-select__trigger-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #e04518;
}

:is(.page-landing, .page-white) .lp-volume-select__trigger-icon .ui-icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 2.55;
}

:is(.page-landing, .page-white) .lp-volume-select__value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:is(.page-landing, .page-white) .lp-volume-select__value.is-placeholder {
  color: #484848;
}

:is(.page-landing, .page-white) .lp-volume-select__chevron {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: #e04518;
  pointer-events: none;
  transition: transform 0.2s ease;
}

:is(.page-landing, .page-white) .lp-volume-select__chevron .ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.65;
}

:is(.page-landing, .page-white) .lp-volume-select.is-open .lp-volume-select__chevron {
  transform: translateY(-50%) rotate(180deg);
}

:is(.page-landing, .page-white) .lp-volume-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

:is(.page-landing, .page-white) .lp-volume-select__backdrop,
:is(.page-landing, .page-white) .lp-volume-select__panel {
  display: none;
}

:is(.page-landing, .page-white) .lp-volume-select__panel.is-visible {
  display: block;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 120;
  border: 1px solid rgba(243, 81, 32, 0.35);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(38, 38, 38, 0.14);
  overflow: hidden;
  max-height: min(18rem, 55vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

:is(.page-landing, .page-white) .lp-volume-select__panel-title {
  display: none;
  margin: 0;
}

:is(.page-landing, .page-white) .lp-volume-select__options {
  display: flex;
  flex-direction: column;
}

:is(.page-landing, .page-white) .lp-volume-select__option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
  padding: 0.95rem 1.1rem;
  text-align: left;
  font-family: Roboto, Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #262626;
  cursor: pointer;
}

:is(.page-landing, .page-white) .lp-volume-select__option:last-child {
  border-bottom: none;
}

:is(.page-landing, .page-white) .lp-volume-select__option:hover,
:is(.page-landing, .page-white) .lp-volume-select__option:focus-visible {
  background: #fff8f5;
  outline: none;
}

:is(.page-landing, .page-white) .lp-volume-select__option.is-selected {
  background: #fff3ee;
}

:is(.page-landing, .page-white) .lp-volume-select__option-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: rgba(243, 81, 32, 0.14);
  color: #e04518;
  box-shadow: inset 0 0 0 1px rgba(243, 81, 32, 0.18);
}

:is(.page-landing, .page-white) .lp-volume-select__option-icon .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
}

:is(.page-landing, .page-white) .lp-volume-select__option-label {
  flex: 1 1 auto;
  min-width: 0;
}

body.lp-volume-select-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  :is(.page-landing, .page-white) .lp-volume-select__trigger {
    padding-inline: 1rem 2.65rem;
    font-size: 16px;
  }

  :is(.page-landing, .page-white) .lp-volume-select__backdrop.is-visible {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 5190;
    border: none;
    padding: 0;
    background: rgba(15, 15, 15, 0.48);
    cursor: pointer;
  }

  :is(.page-landing, .page-white) .lp-volume-select__panel.is-visible {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 5200;
    max-height: min(78vh, 32rem);
    border: none;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    animation: lp-volume-sheet-up 0.24s ease-out;
  }

  :is(.page-landing, .page-white) .lp-volume-select__panel-title {
    display: block;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #f35120 0%, #e04518 100%);
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }

  :is(.page-landing, .page-white) .lp-volume-select__option {
    padding: 1rem 1.15rem;
    font-size: 1rem;
  }

  :is(.page-landing, .page-white) .lp-volume-select__option-icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  :is(.page-landing, .page-white) .lp-volume-select__option-icon .ui-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@keyframes lp-volume-sheet-up {
  from {
    transform: translateY(100%);
    opacity: 0.6;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === Figma theme: landing funnel + white education site === */
:is(.page-landing, .page-white) {
  --lp-font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --lp-font-ui: "DM Sans", "Inter", system-ui, sans-serif;
  --lp-section-space: clamp(2rem, 3.5vw, 3rem);
  --lp-cta-space: clamp(2.25rem, 4vw, 3.5rem);
}

:is(.page-landing, .page-white) .lp-hero {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1.5rem, 2.5vw, 2.25rem);
  background: #fff;
}

:is(.page-landing, .page-white) .lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

:is(.page-landing, .page-white) .lp-hero-copy {
  min-width: 0;
  max-width: 100%;
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

:is(.page-landing, .page-white) .lp-hero h1 {
  max-width: 690px;
  margin-top: 0;
  font-family: var(--lp-font-display);
  font-size: clamp(1.85rem, 2.65vw, 2.65rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: #141414;
  overflow-wrap: break-word;
}

:is(.page-landing, .page-white) .lp-hero .lp-lead {
  max-width: 607px;
  margin-top: 1.15rem;
  font-family: var(--lp-font-ui);
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: #4a4a4a;
  overflow-wrap: break-word;
}

:is(.page-landing, .page-white) .lp-hero-features,
:is(.page-landing, .page-white) .lp-hero-list--figma {
  display: grid;
  gap: 1.05rem;
  max-width: 607px;
  margin: 1.65rem 0 0;
  padding: 0;
  list-style: none;
}

:is(.page-landing, .page-white) .lp-hero-features li,
:is(.page-landing, .page-white) .lp-hero-list--figma li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.4rem 0.75rem;
  align-items: start;
  margin: 0;
  padding: 0;
}

:is(.page-landing, .page-white) .lp-hero-features__icon,
:is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-row: 1 / span 2;
  align-self: start;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.06rem;
  border-radius: 999px;
  color: #fff;
  background: #f35120;
  box-shadow: 0 2px 8px rgba(243, 81, 32, 0.28);
}

:is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon {
  grid-row: 1;
  grid-column: 1;
}

:is(.page-landing, .page-white) .lp-hero-features__icon .ui-icon,
:is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon .ui-icon {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2.75;
}

:is(.page-landing, .page-white) .lp-hero-features__label,
:is(.page-landing, .page-white) .lp-hero-features__desc {
  display: block;
  grid-column: 2;
  min-width: 0;
  font-family: var(--lp-font-ui);
  font-size: clamp(0.68rem, 0.95vw, 0.76rem);
  line-height: 1.5;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

:is(.page-landing, .page-white) .lp-hero-features__label {
  grid-row: 1;
  font-weight: 700;
  color: #141414;
}

:is(.page-landing, .page-white) .lp-hero-features__desc {
  grid-row: 2;
  font-weight: 500;
  color: #525252;
  text-transform: none;
  letter-spacing: 0.01em;
}

:is(.page-landing, .page-white) .lp-hero-list__text {
  display: block;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  font-family: var(--lp-font-ui);
  font-size: clamp(0.8125rem, 0.74rem + 0.22vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #525252;
  overflow-wrap: break-word;
}

:is(.page-landing, .page-white) .lp-hero-actions {
  margin-top: 2rem;
}

:is(.page-landing, .page-white) .lp-hero-actions .lp-btn--cta {
  width: 100%;
  max-width: 607px;
  min-height: 58px;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--lp-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(243, 81, 32, 0.28);
}

/* Desktop hero – typography scaled to match visual column */
@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-hero-grid {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    align-items: center;
    gap: clamp(2rem, 3vw, 2.75rem);
  }

  :is(.page-landing, .page-white) .lp-hero-copy {
    padding-top: clamp(0.5rem, 1.25vw, 1rem);
    padding-right: clamp(0.25rem, 1.5vw, 1rem);
  }

  :is(.page-landing, .page-white) .lp-hero h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(2.125rem, 1.45rem + 1.65vw, 2.875rem);
    line-height: 1.12;
    letter-spacing: -0.036em;
  }

  :is(.page-landing, .page-white) .lp-hero .lp-lead {
    max-width: 100%;
    margin-top: 1.35rem;
    font-size: clamp(1.0625rem, 0.95rem + 0.35vw, 1.1875rem);
    line-height: 1.6;
    color: #404040;
  }

  :is(.page-landing, .page-white) .lp-hero-features {
    max-width: 100%;
    gap: 1.15rem;
    margin-top: 2rem;
  }

  :is(.page-landing, .page-white) .lp-hero-features li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.35rem 0.9rem;
  }

  :is(.page-landing, .page-white) .lp-hero-features__icon,
:is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.12rem;
    box-shadow: 0 3px 10px rgba(243, 81, 32, 0.3);
  }

  :is(.page-landing, .page-white) .lp-hero-features__icon .ui-icon,
:is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon .ui-icon {
    width: 0.85rem;
    height: 0.85rem;
    stroke-width: 2.85;
  }

  :is(.page-landing, .page-white) .lp-hero-features__label,
  :is(.page-landing, .page-white) .lp-hero-features__desc {
    font-size: clamp(0.8125rem, 0.74rem + 0.22vw, 0.9375rem);
    line-height: 1.5;
  }

  :is(.page-landing, .page-white) .lp-hero-features__label {
    letter-spacing: 0.035em;
  }

  :is(.page-landing, .page-white) .lp-hero-actions {
    margin-top: 2.15rem;
  }

  :is(.page-landing, .page-white) .lp-hero-actions .lp-btn--cta {
    width: 100%;
    max-width: 100%;
    min-height: 60px;
    padding-inline: 2rem;
    font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
    letter-spacing: 0.04em;
  }

  :is(.page-landing, .page-white) .lp-hero-visual__frame {
    padding-left: 0.25rem;
  }

  :is(.page-landing, .page-white) .lp-hero-visual__shape--dark {
    left: 10%;
  }

  :is(.page-landing, .page-white) .lp-hero-visual__card--customers {
    left: 6%;
  }
}

@media (min-width: 1280px) {
  :is(.page-landing, .page-white) .lp-hero h1 {
    font-size: clamp(2.5rem, 1.8rem + 1.4vw, 3rem);
  }

  :is(.page-landing, .page-white) .lp-hero .lp-lead {
    font-size: 1.1875rem;
  }
}

:is(.page-landing, .page-white) .lp-hero-visual {
  position: relative;
  min-width: 0;
}

:is(.page-landing, .page-white) .lp-hero-visual__frame {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  padding: 1.5rem 1rem 2rem 1.5rem;
}

:is(.page-landing, .page-white) .lp-hero-visual__shape {
  position: absolute;
  border-radius: 42px;
  z-index: 0;
}

:is(.page-landing, .page-white) .lp-hero-visual__shape--orange {
  top: 0;
  right: 0;
  width: min(58%, 320px);
  height: min(52%, 300px);
  background: #f35120;
}

:is(.page-landing, .page-white) .lp-hero-visual__shape--dark {
  left: 0;
  bottom: 0;
  width: min(52%, 280px);
  height: min(48%, 260px);
  background: #262626;
}

:is(.page-landing, .page-white) .lp-hero-visual__img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  margin: 1.5rem auto 0;
  height: clamp(360px, 38vw, 500px);
  border-radius: 36px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(38, 38, 38, 0.16);
}

:is(.page-landing, .page-white) .lp-hero-visual__card {
  position: absolute;
  z-index: 2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(38, 38, 38, 0.14);
  padding: 0.85rem 1rem;
}

:is(.page-landing, .page-white) .lp-hero-visual__card p {
  margin: 0.35rem 0 0;
  color: #484848;
  font-family: var(--lp-font-ui);
  font-size: 0.82rem;
  line-height: 1.3;
}

:is(.page-landing, .page-white) .lp-hero-visual__card strong {
  color: #262626;
  font-weight: 700;
}

:is(.page-landing, .page-white) .lp-hero-visual__card--customers {
  left: 0;
  bottom: 12%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  max-width: 12.5rem;
}

:is(.page-landing, .page-white) .lp-hero-visual__card--customers p {
  flex: 0 0 100%;
}

:is(.page-landing, .page-white) .lp-hero-visual__avatars {
  display: flex;
  align-items: center;
}

:is(.page-landing, .page-white) .lp-hero-visual__avatar {
  width: 2rem;
  height: 2rem;
  margin-right: -0.55rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9b29c 0%, #f35120 100%);
}

:is(.page-landing, .page-white) .lp-hero-visual__avatar:nth-child(2) {
  background: linear-gradient(135deg, #c7d2fe 0%, #6366f1 100%);
}

:is(.page-landing, .page-white) .lp-hero-visual__avatar:nth-child(3) {
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 100%);
}

:is(.page-landing, .page-white) .lp-hero-visual__avatar:nth-child(4) {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
}

:is(.page-landing, .page-white) .lp-hero-visual__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin-left: 0.35rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: #f35120;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
}

:is(.page-landing, .page-white) .lp-hero-visual__card--rating {
  right: 0;
  bottom: 8%;
  min-width: 9.5rem;
  text-align: left;
}

:is(.page-landing, .page-white) .lp-hero-visual__score {
  display: block;
  color: #262626;
  font-family: var(--lp-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

:is(.page-landing, .page-white) .lp-hero-visual__stars {
  display: flex;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

:is(.page-landing, .page-white) .lp-hero-visual__stars span {
  width: 0.95rem;
  height: 0.95rem;
  background: #e5e7eb;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

:is(.page-landing, .page-white) .lp-hero-visual__stars .is-filled {
  background: #f1c644;
}

:is(.page-landing, .page-white) .lp-hero-visual__stars .is-half {
  background: linear-gradient(90deg, #f1c644 50%, #e5e7eb 50%);
}

/* About section – balanced split + stats */
:is(.page-landing, .page-white) .lp-check-points,
:is(.page-landing, .page-white) .lp-about-points {
  display: grid;
  gap: 1rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

:is(.page-landing, .page-white) .lp-check-points li,
:is(.page-landing, .page-white) .lp-about-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 0.85rem;
  align-items: start;
  margin: 0;
}

:is(.page-landing, .page-white) .lp-check-points__icon,
:is(.page-landing, .page-white) .lp-about-points__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  color: #fff;
  background: #f35120;
  box-shadow: 0 2px 8px rgba(243, 81, 32, 0.28);
}

:is(.page-landing, .page-white) .lp-check-points__icon .ui-icon,
:is(.page-landing, .page-white) .lp-about-points__icon .ui-icon {
  width: 0.8125rem;
  height: 0.8125rem;
  stroke-width: 2.85;
}

:is(.page-landing, .page-white) .lp-check-points li > span:last-child,
:is(.page-landing, .page-white) .lp-about-points li > span:last-child {
  font-family: var(--lp-font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #484848;
}

:is(.page-landing, .page-white) .lp-about .lp-section-copy .lp-btn {
  margin-top: 1.5rem;
}

:is(.page-landing, .page-white) .lp-about .lp-inline-stats .lp-stat-label,
:is(.page-landing, .page-white) .lp-about .lp-inline-stats span:not(.lp-stat-icon):not(.lp-stat-label) {
  display: block;
}

@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-about .lp-split {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: stretch;
    gap: clamp(2rem, 3.5vw, 3.25rem);
  }

  :is(.page-landing, .page-white) .lp-about .lp-image-card {
    min-height: 0;
    display: flex;
    align-items: stretch;
  }

  :is(.page-landing, .page-white) .lp-about .lp-image-card span {
    inset: 10% 8% 0 0;
  }

  :is(.page-landing, .page-white) .lp-about .lp-image-card img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 520px;
    object-fit: cover;
  }

  :is(.page-landing, .page-white) .lp-about .lp-section-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 100%;
  }

  :is(.page-landing, .page-white) .lp-about .lp-section-copy h2 {
    margin-top: 0;
    font-family: var(--lp-font-display);
    font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #141414;
  }

  :is(.page-landing, .page-white) .lp-check-points,
  :is(.page-landing, .page-white) .lp-about-points {
    gap: 1.1rem;
    margin-top: 1.5rem;
  }

  :is(.page-landing, .page-white) .lp-check-points__icon,
  :is(.page-landing, .page-white) .lp-about-points__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.18rem;
  }

  :is(.page-landing, .page-white) .lp-check-points__icon .ui-icon,
  :is(.page-landing, .page-white) .lp-about-points__icon .ui-icon {
    width: 0.875rem;
    height: 0.875rem;
  }

  :is(.page-landing, .page-white) .lp-check-points li > span:last-child,
  :is(.page-landing, .page-white) .lp-about-points li > span:last-child {
    font-size: clamp(1rem, 0.92rem + 0.25vw, 1.0625rem);
    line-height: 1.62;
  }

  :is(.page-landing, .page-white) .lp-about .lp-section-copy .lp-btn {
    align-self: flex-start;
    margin-top: 1.65rem;
    min-height: 54px;
    padding-inline: 1.75rem;
  }

  :is(.page-landing, .page-white) .lp-about .lp-inline-stats {
    margin-top: 2rem;
    padding-top: 1.75rem;
    gap: clamp(0.65rem, 1.2vw, 1rem);
    border-top-color: rgba(38, 38, 38, 0.12);
  }

  :is(.page-landing, .page-white) .lp-about .lp-inline-stats .lp-stat-card {
    min-width: 0;
    padding-inline: 0.15rem;
  }

  :is(.page-landing, .page-white) .lp-about .lp-inline-stats .lp-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
    border-radius: 999px;
    background: rgba(243, 81, 32, 0.1);
    box-shadow: none;
  }

  :is(.page-landing, .page-white) .lp-about .lp-inline-stats .lp-stat-icon .ui-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  :is(.page-landing, .page-white) .lp-about .lp-inline-stats strong {
    font-size: clamp(1.65rem, 1.35rem + 0.9vw, 2.125rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  :is(.page-landing, .page-white) .lp-about .lp-inline-stats .lp-stat-label,
  :is(.page-landing, .page-white) .lp-about .lp-inline-stats span:not(.lp-stat-icon) {
    margin-top: 0.4rem;
    font-size: clamp(0.75rem, 0.68rem + 0.18vw, 0.8125rem);
    line-height: 1.35;
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
  }
}

@media (min-width: 1280px) {
  :is(.page-landing, .page-white) .lp-about .lp-section-copy h2 {
    font-size: clamp(2.35rem, 1.8rem + 1.2vw, 2.875rem);
  }
}

/* Services section – balanced 3-column layout */
:is(.page-landing, .page-white) .lp-check-points--compact,
:is(.page-landing, .page-white) .lp-services-points,
:is(.page-landing, .page-white) .lp-service-points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

:is(.page-landing, .page-white) .lp-services-points {
  margin-top: 1.15rem;
}

:is(.page-landing, .page-white) .lp-check-points--compact li,
:is(.page-landing, .page-white) .lp-services-points li,
:is(.page-landing, .page-white) .lp-service-points li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  min-width: 0;
}

:is(.page-landing, .page-white) .lp-check-points--compact .lp-check-points__icon,
:is(.page-landing, .page-white) .lp-services-points__icon,
:is(.page-landing, .page-white) .lp-service-points__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.18em;
  border-radius: 999px;
  color: #fff;
  background: #f35120;
  box-shadow: 0 2px 8px rgba(243, 81, 32, 0.26);
}

:is(.page-landing, .page-white) .lp-check-points--compact .lp-check-points__icon .ui-icon,
:is(.page-landing, .page-white) .lp-services-points__icon .ui-icon,
:is(.page-landing, .page-white) .lp-service-points__icon .ui-icon {
  width: 0.6875rem;
  height: 0.6875rem;
  stroke-width: 2.85;
}

:is(.page-landing, .page-white) .lp-check-points--compact li > span:last-child,
:is(.page-landing, .page-white) .lp-services-points li > span:last-child,
:is(.page-landing, .page-white) .lp-service-points li > span:last-child {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--lp-font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #484848;
  overflow-wrap: break-word;
}

:is(.page-landing, .page-white) .lp-services-intro .lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

:is(.page-landing, .page-white) .lp-services-intro .lp-btn {
  margin-top: 1.35rem;
}

:is(.page-landing, .page-white) .lp-service-points {
  flex: 1 1 auto;
  width: 100%;
  margin-top: 0.35rem;
}

:is(.page-landing, .page-white) .lp-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
}

:is(.page-landing, .page-white) .lp-service-card .lp-service-icon-wrap {
  align-self: flex-start;
  flex-shrink: 0;
  margin: 0 0 1rem;
}

:is(.page-landing, .page-white) .lp-service-card .lp-service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: auto;
  margin-left: 0;
  border: 0;
  border-radius: 999px;
  color: #f35120;
  background: rgba(243, 81, 32, 0.08);
  box-shadow: inset 0 0 0 1px rgba(243, 81, 32, 0.14);
  line-height: 0;
  transition: background 0.18s ease, color 0.18s ease;
}

:is(.page-landing, .page-white) .lp-service-card .lp-service-arrow .ui-icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.45;
}

:is(.page-landing, .page-white) .lp-service-card:hover,
:is(.page-landing, .page-white) .lp-service-card:focus-within {
  transform: none;
}

:is(.page-landing, .page-white) .lp-service-card:hover .lp-service-arrow,
:is(.page-landing, .page-white) .lp-service-card:focus-within .lp-service-arrow {
  color: #fff;
  background: #f35120;
  box-shadow: none;
  transform: none;
}

@media (min-width: 992px) {
  :is(.page-landing, .page-white) .lp-services .lp-services-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(1.15rem, 2vw, 1.5rem);
  }

  :is(.page-landing, .page-white) .lp-services-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: none;
    padding-right: 0.75rem;
  }

  :is(.page-landing, .page-white) .lp-services-intro .lp-eyebrow {
    font-family: var(--lp-font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.065em;
    color: #f35120;
  }

  :is(.page-landing, .page-white) .lp-services-intro .lp-kicker-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  :is(.page-landing, .page-white) .lp-services-intro .lp-kicker-icon .ui-icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  :is(.page-landing, .page-white) .lp-services-intro h2 {
    max-width: none;
    margin-top: 0.55rem;
    font-family: var(--lp-font-display);
    font-size: clamp(1.65rem, 1.25rem + 1vw, 2.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.024em;
    color: #141414;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-check-points--compact,
  :is(.page-landing, .page-white) .lp-services-points {
    gap: 0.85rem;
    margin-top: 1.25rem;
  }

  :is(.page-landing, .page-white) .lp-check-points--compact .lp-check-points__icon,
  :is(.page-landing, .page-white) .lp-services-points__icon {
    width: 1.3125rem;
    height: 1.3125rem;
    margin-top: 0.16em;
  }

  :is(.page-landing, .page-white) .lp-check-points--compact .lp-check-points__icon .ui-icon,
  :is(.page-landing, .page-white) .lp-services-points__icon .ui-icon {
    width: 0.75rem;
    height: 0.75rem;
  }

  :is(.page-landing, .page-white) .lp-check-points--compact li > span:last-child,
  :is(.page-landing, .page-white) .lp-services-points li > span:last-child {
    font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
    line-height: 1.62;
  }

  :is(.page-landing, .page-white) .lp-services-intro .lp-btn {
    align-self: flex-start;
    margin-top: 1.5rem;
    min-height: 52px;
    padding-inline: 1.65rem;
    font-size: 1rem;
  }

  :is(.page-landing, .page-white) .lp-service-card {
    min-width: 0;
    min-height: 100%;
    padding: 1.25rem 1.15rem 1.15rem !important;
    padding-top: 1.25rem !important;
    border: 1px solid rgba(38, 38, 38, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(38, 38, 38, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  :is(.page-landing, .page-white) .lp-service-card:hover,
  :is(.page-landing, .page-white) .lp-service-card:focus-within {
    border-color: rgba(243, 81, 32, 0.18);
    box-shadow: 0 12px 32px rgba(243, 81, 32, 0.08);
  }

  :is(.page-landing, .page-white) .lp-service-card .lp-service-icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0 0 0.85rem;
    border-radius: 14px;
    background: rgba(243, 81, 32, 0.1);
    box-shadow: none;
  }

  :is(.page-landing, .page-white) .lp-service-card .lp-service-icon-wrap .ui-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  :is(.page-landing, .page-white) .lp-service-card h3 {
    margin: 0 0 0.65rem;
    font-family: var(--lp-font-display);
    font-size: clamp(1.125rem, 1rem + 0.32vw, 1.3125rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.014em;
    color: #141414;
    overflow-wrap: break-word;
  }

  :is(.page-landing, .page-white) .lp-service-points {
    gap: 0.7rem;
    margin-top: 0;
  }

  :is(.page-landing, .page-white) .lp-service-points__icon {
    width: 1.1875rem;
    height: 1.1875rem;
    margin-top: 0.18em;
  }

  :is(.page-landing, .page-white) .lp-service-points__icon .ui-icon {
    width: 0.6875rem;
    height: 0.6875rem;
  }

  :is(.page-landing, .page-white) .lp-service-points li > span:last-child {
    font-size: clamp(0.875rem, 0.82rem + 0.15vw, 0.9375rem);
    line-height: 1.55;
  }

  :is(.page-landing, .page-white) .lp-service-card .lp-service-arrow {
    width: 2.25rem;
    height: 2.25rem;
    margin-top: auto;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  :is(.page-landing, .page-white) .lp-service-card .lp-service-icon-wrap {
    align-self: flex-start !important;
    margin: 0 0 1rem !important;
  }

  :is(.page-landing, .page-white) .lp-service-card .lp-service-arrow {
    align-self: flex-start !important;
    margin-top: 1rem !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  :is(.page-landing, .page-white) .lp-service-card:hover .lp-service-arrow,
  :is(.page-landing, .page-white) .lp-service-card:focus-within .lp-service-arrow {
    transform: none !important;
  }
}

/* Landing page – compact vertical rhythm between sections */
:is(.page-landing, .page-white) .lp-section {
  padding-block: var(--lp-section-space);
}

:is(.page-landing, .page-white) .lp-cta-image {
  padding-block: var(--lp-cta-space);
}

:is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid {
  padding-block: clamp(2rem, 3.5vw, 2.75rem);
}

.page-landing .lp-testimonials-head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-landing .lp-section-heading {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-landing .lp-form-modal {
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (max-width: 991px) {
  :is(.page-landing, .page-white) {
    --lp-section-space: clamp(1.75rem, 5vw, 2.25rem);
    --lp-cta-space: clamp(2rem, 6vw, 2.75rem);
  }

  :is(.page-landing, .page-white) .lp-counter-bar .lp-stats-grid {
    padding-block: clamp(1.75rem, 5vw, 2.25rem);
  }
}

/* Form – mobile inline */
.page-landing .lp-form-modal {
  position: relative;
  width: 100%;
  max-width: var(--lp-max, 1410px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
  box-sizing: border-box;
}

.page-landing .lp-form-modal__backdrop,
.page-landing .lp-form-modal__accent,
.page-landing .lp-form-modal__close {
  display: none;
}

.page-landing .lp-form-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.page-landing .lp-form-modal__body {
  width: 100%;
}

.page-landing .lp-form-modal .lp-form-panel {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

body.lp-form-modal-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .page-landing .lp-form-modal {
    position: fixed;
    inset: 0;
    z-index: 5500;
    display: none;
    align-items: center;
    justify-content: center;
    max-width: none;
    margin: 0;
    padding: clamp(1rem, 3vh, 2rem);
    background: transparent;
    pointer-events: none;
  }

  .page-landing .lp-form-modal.is-open {
    display: flex;
    pointer-events: auto;
  }

  .page-landing .lp-form-modal__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(8, 10, 16, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    animation: lp-modal-backdrop-in 0.28s ease-out;
  }

  .page-landing .lp-form-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(calc(100vw - 2.5rem), 920px);
    max-height: min(94vh, 920px);
    border-radius: 24px;
    background: #fff;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 32px 90px rgba(0, 0, 0, 0.35),
      0 12px 32px rgba(243, 81, 32, 0.1);
    overflow: hidden;
    animation: lp-form-modal-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .page-landing .lp-form-modal__accent {
    display: block;
    flex-shrink: 0;
    height: 5px;
    background: linear-gradient(90deg, #f35120 0%, #ff8a5c 42%, #f1c644 100%);
  }

  .page-landing .lp-form-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 4;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(38, 38, 38, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #262626;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(38, 38, 38, 0.12);
    transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .page-landing .lp-form-modal__close:hover,
  .page-landing .lp-form-modal__close:focus-visible {
    border-color: rgba(243, 81, 32, 0.45);
    color: #f35120;
    transform: scale(1.04);
    outline: none;
  }

  .page-landing .lp-form-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-landing .lp-form-modal.is-open .lp-form-panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: #fff;
  }

  .page-landing .lp-form-modal.is-open .lp-form-header {
    margin: 0;
    padding: 1.2rem 3.5rem 0.95rem 1.35rem;
    background: linear-gradient(180deg, #fff9f6 0%, #fff 78%);
    border-bottom: 1px solid rgba(243, 81, 32, 0.1);
  }

  .page-landing .lp-form-modal.is-open .lp-form-kicker {
    font-family: var(--lp-font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.07em;
  }

  .page-landing .lp-form-modal.is-open .lp-form-title {
    font-family: var(--lp-font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.22;
    max-width: 95%;
  }

  .page-landing .lp-form-modal.is-open .lp-form-lead {
    font-family: var(--lp-font-ui);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #525252;
    max-width: 100%;
  }

  .page-landing .lp-form-modal.is-open .lp-form-note {
    margin-top: 0.65rem;
    border-radius: 10px;
    background: #fffdf8;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .page-landing .lp-form-modal.is-open .lp-form,
  .page-landing .lp-form-modal.is-open .lp-form-success {
    padding: 0.95rem 1.35rem 1.25rem;
  }

  .page-landing .lp-form-modal.is-open .lp-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.85rem;
    align-items: start;
  }

  .page-landing .lp-form-modal.is-open .lp-form-result,
  .page-landing .lp-form-modal.is-open .form-honeypot,
  .page-landing .lp-form-modal.is-open .lp-field--phone,
  .page-landing .lp-form-modal.is-open .lp-field--volume,
  .page-landing .lp-form-modal.is-open .lp-consents,
  .page-landing .lp-form-modal.is-open .lp-submit {
    grid-column: 1 / -1;
  }

  .page-landing .lp-form-modal.is-open .lp-question-title {
    display: none;
  }

  .page-landing .lp-form-modal.is-open .lp-submit {
    position: static;
    min-height: 44px;
    margin-top: 0.15rem;
    border-radius: 10px;
    font-family: var(--lp-font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(243, 81, 32, 0.2);
  }

  .page-landing .lp-form-modal.is-open .lp-volume-select__backdrop.is-visible {
    z-index: 5610;
  }

  .page-landing .lp-form-modal.is-open .lp-volume-select__panel.is-visible {
    z-index: 5620;
  }

  .page-landing .lp-volume-select__panel.is-visible.lp-volume-select__panel--floating {
    display: block;
    border: 1px solid rgba(243, 81, 32, 0.32);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Modal form – compact field scale */
.page-landing .lp-form-modal .lp-form {
  gap: 0.6rem;
}

.page-landing .lp-form-modal .lp-input,
.page-landing .lp-form-modal .lp-textarea,
.page-landing .lp-form-modal .lp-volume-select__trigger {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  line-height: 1.35;
  border-radius: 10px;
}

.page-landing .lp-form-modal .lp-field--icon .lp-input,
.page-landing .lp-form-modal .lp-field--icon .lp-volume-select__trigger {
  padding-left: 2.5rem;
}

.page-landing .lp-form-modal .lp-input-icon {
  left: 0.8rem;
  width: 1.2rem;
  height: 1.2rem;
}

.page-landing .lp-form-modal .lp-input-icon .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.page-landing .lp-form-modal .lp-volume-select__trigger {
  padding: 0.55rem 2.25rem 0.55rem 0.9rem;
  gap: 0.45rem;
}

.page-landing .lp-form-modal .lp-volume-select__trigger-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.page-landing .lp-form-modal .lp-volume-select__trigger-icon .ui-icon {
  width: 1rem;
  height: 1rem;
}

.page-landing .lp-form-modal .lp-volume-select__chevron {
  right: 0.8rem;
  width: 1rem;
  height: 1rem;
}

.page-landing .lp-form-modal .lp-volume-select__chevron .ui-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.page-landing .lp-form-modal .lp-volume-select__value {
  font-size: 0.875rem;
}

.page-landing .lp-form-modal .lp-phone-input {
  min-height: 42px;
  border-radius: 10px;
}

.page-landing .lp-form-modal .lp-phone-prefix {
  min-height: 40px;
  padding: 0 0.55rem 0 0.65rem;
  gap: 0.35rem;
}

.page-landing .lp-form-modal .lp-phone-prefix-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.page-landing .lp-form-modal .lp-phone-prefix-icon .ui-icon {
  width: 1rem;
  height: 1rem;
}

.page-landing .lp-form-modal .lp-phone-code {
  font-size: 0.8125rem;
}

.page-landing .lp-form-modal .lp-phone-national {
  min-height: 40px !important;
  font-size: 0.875rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.page-landing .lp-form-modal .lp-phone-hint {
  margin-top: 0.3rem;
  font-size: 0.6875rem;
  line-height: 1.35;
}

.page-landing .lp-form-modal .lp-consents {
  gap: 0.45rem;
  margin-top: 0;
}

.page-landing .lp-form-modal .lp-consent {
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.page-landing .lp-form-modal .lp-consent input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  border-width: 2px;
  border-radius: 4px;
}

.page-landing .lp-form-modal .lp-consent input[type="checkbox"]:checked::after {
  width: 0.28rem;
  height: 0.55rem;
  border-width: 0 2px 2px 0;
}

.page-landing .lp-form-modal .lp-spam-note {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-size: 0.6875rem;
  line-height: 1.4;
}

.page-landing .lp-form-modal .lp-spam-note .lp-note-icon {
  width: 1rem;
  height: 1rem;
}

.page-landing .lp-form-modal .lp-spam-note .lp-note-icon .ui-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.page-landing .lp-form-modal .lp-submit {
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

.page-landing .lp-form-modal .lp-input:focus,
.page-landing .lp-form-modal .lp-phone-input:focus-within,
.page-landing .lp-form-modal .lp-volume-select__trigger:focus {
  box-shadow: 0 0 0 3px rgba(243, 81, 32, 0.1);
}

.page-landing .lp-form-modal .lp-error {
  font-size: 0.6875rem;
  line-height: 1.3;
}

.page-landing .lp-form-modal .lp-form-header {
  margin-bottom: 0.85rem;
}

.page-landing .lp-form-modal .lp-form-title {
  font-size: 1.15rem;
  line-height: 1.22;
}

.page-landing .lp-form-modal .lp-form-lead {
  font-size: 0.8125rem;
  line-height: 1.45;
}

.page-landing .lp-form-modal .lp-form-note {
  margin-top: 0.6rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 10px;
}

.page-landing .lp-form-modal .lp-form-kicker {
  font-size: 0.6875rem;
}

.page-landing .lp-form-modal .lp-form-modal__close {
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
}

@media (max-width: 991px) {
  :is(.page-landing, .page-white) .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  :is(.page-landing, .page-white) .lp-hero-features li,
  :is(.page-landing, .page-white) .lp-hero-list--figma li {
    grid-template-columns: auto 1fr;
    gap: 0.35rem 0.7rem;
  }

  :is(.page-landing, .page-white) .lp-hero-features__icon,
  :is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon {
    grid-row: 1 / 3;
    align-self: start;
    margin-top: 0.12rem;
  }

  :is(.page-landing, .page-white) .lp-hero-list--figma .lp-bullet-icon {
    grid-row: 1;
  }

  :is(.page-landing, .page-white) .lp-hero-features__label,
  :is(.page-landing, .page-white) .lp-hero-features__desc {
    grid-column: 2;
  }

  :is(.page-landing, .page-white) .lp-hero {
    padding-bottom: clamp(0.5rem, 2vw, 0.75rem);
  }

  .page-landing .lp-form-modal {
    padding-top: 0;
    padding-bottom: clamp(1.25rem, 4vw, 1.75rem);
  }
}

@keyframes lp-form-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lp-modal-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Landing (black page): hero image — top on mobile, right on desktop */
.page-landing .lp-hero-visual-slot {
  min-width: 0;
}

@media (min-width: 992px) {
  .page-landing .lp-hero-grid {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    align-items: center;
  }

  .page-landing .lp-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .page-landing .lp-hero-visual-slot {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 991px) {
  .page-landing .lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-landing .lp-hero-visual-slot {
    order: -1;
  }

  .page-landing .lp-hero-visual-slot .lp-hero-visual__frame {
    min-height: clamp(280px, 72vw, 360px);
    padding: 0.75rem 0.5rem 1rem;
  }

  .page-landing .lp-hero-visual-slot .lp-hero-visual__img {
    height: clamp(240px, 64vw, 320px);
    margin-top: 0.75rem;
  }

  .page-landing .lp-hero-visual-slot .lp-hero-visual__card--customers {
    bottom: 8%;
    max-width: 11rem;
  }

  .page-landing .lp-hero-visual-slot .lp-hero-visual__card--rating {
    right: 0;
    bottom: 4%;
  }
}
