/* ==========================================================================
   WEBVORK — main stylesheet
   Mobile-first. Breakpoints: base (<768px) → 768px (Tablet) → 1440px (Desktop) → 1920px (Large desktop)
   Methodology: BEM. Source of truth for tokens: Figma "webvork сайт", page ENG.
   ========================================================================== */ /* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */ /* Typography */ /* Fluid heading sizes (mobile → desktop) */ /* Radii / borders */ /* Layout */ /* Motion */

  --lp3-color-bg: #000000;
  --lp3-color-card-bg-from: #0d0b0c;
  --lp3-color-card-bg-via: #0e0c0d;
  --lp3-color-card-bg-to: #110f12;
  --lp3-color-accent: #c17b48;
  --lp3-color-accent-gradient-from: #cd8c56;
  --lp3-color-accent-gradient-to: #8d5731;
  --lp3-color-accent-shadow: #7c4720;
  --lp3-color-text-primary: #ffffff;
  --lp3-color-text-secondary: #c2c2c2;
  --lp3-color-text-on-accent: #020305;
  --lp3-color-border: #ffffff;
  --lp3-color-border-muted: rgba(255, 255, 255, 0.16);

  --lp3-font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --lp3-fs-hero: clamp(1.85rem, 1.35rem + 3.62vw, 4.125rem);
  --lp3-fs-h2: clamp(1.85rem, 1.2rem + 3.1vw, 4.375rem);
  --lp3-fs-h2-lg: clamp(2.1rem, 1.3rem + 3.8vw, 5.625rem);
  --lp3-fs-card-title: clamp(1.15rem, 0.95rem + 0.9vw, 1.625rem);
  --lp3-fs-body: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  --lp3-fs-body-sm: clamp(0.8rem, 0.8rem + 0.2vw, 0.9375rem);
  --lp3-fs-body-sm2: clamp(0.8rem, 0.8rem + 0.125vw, 0.8075rem);
  --lp3-fs-badge: 0.8125rem;

  --lp3-radius-card: 16px;
  --lp3-radius-block: 30px;
  --lp3-radius-button: 11px;
  --lp3-radius-badge: 21.5px;
  --lp3-border-width: 2px;

  --lp3-container-max: 1352px;
  --lp3-container-pad: 15px;
  --lp3-section-gap: 32px;

  --lp3-transition-fast: 160ms ease;
  --lp3-transition-base: 240ms ease;
}

@media (min-width: 768px) {
  :root {
    --lp3-container-pad: 40px;
    --lp3-section-gap: 48px;
  }
}

@media (min-width: 1440px) {
  :root {
    --lp3-container-pad: 64px;
    --lp3-section-gap: 70px;
  }
} /* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
.lp3,
.lp3 *,
.lp3 *::before,
.lp3 *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .lp3,
  .lp3 *,
  .lp3 *::before,
  .lp3 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.lp3 {
  margin: 0;
  min-height: 100vh;
  background: var(--lp3-color-bg);
  color: var(--lp3-color-text-primary);
  font-family: var(--lp3-font-family);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}
.lp3 img {
  max-width: 100%;
  display: block;
}
.lp3 svg {
  display: block;
}
.lp3 a {
  color: inherit;
  text-decoration: none;
}
.lp3 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp3 h1,
.lp3 h2,
.lp3 h3,
.lp3 p {
  margin: 0;
}
.lp3 button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
} /* Visible focus for keyboard users everywhere */
.lp3 a:focus-visible,
.lp3 button:focus-visible,
.lp3 input:focus-visible,
.lp3 [tabindex]:focus-visible {
  outline: 2px solid var(--lp3-color-accent-gradient-from);
  outline-offset: 3px;
  border-radius: 4px;
} /* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.lp3 .container {
  position: relative;
  width: 100%;
  max-width: var(--lp3-container-max);
  margin-inline: auto;
  padding-inline: var(--lp3-container-pad);
}
.lp3 .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lp3 .skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--lp3-color-accent-gradient-from);
  color: var(--lp3-color-text-on-accent);
  font-weight: 600;
  border-radius: var(--lp3-radius-button);
  transition: top var(--lp3-transition-fast);
}
.lp3 .skip-link:focus-visible {
  top: 12px;
  outline-offset: 0;
}
.lp3 .section {
  padding-block: var(--lp3-section-gap);
  overflow: hidden;
} /* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.lp3 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--lp3-radius-button);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    transform var(--lp3-transition-fast),
    box-shadow var(--lp3-transition-fast),
    border-color var(--lp3-transition-fast);
}
.lp3 .btn:hover {
  transform: translateY(-1px);
}
.lp3 .btn:active {
  transform: translateY(0);
}
.lp3 .btn__icon {
  width: 15px;
  height: 12px;
  flex-shrink: 0;
}
.lp3 .btn--primary {
  background: linear-gradient(
    180deg,
    var(--lp3-color-accent-gradient-from),
    var(--lp3-color-accent-gradient-to)
  );
  color: var(--lp3-color-text-on-accent);
  border: var(--lp3-border-width) solid transparent;
  box-shadow: inset -3px -5px 6.6px 0 var(--lp3-color-accent-shadow);
}
.lp3 .btn--secondary {
  position: relative;
  background: rgba(13, 16, 24, 0.05);
  color: var(--lp3-color-text-primary);
  border: none;
}
.lp3 .btn--secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lp3-border-width);
  background:
    linear-gradient(
      180deg,
      rgba(205, 140, 86, 0.4) 0%,
      rgba(141, 87, 49, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) -11.9%,
      rgba(255, 255, 255, 0) 19.08%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.lp3 .btn--outline {
  background: var(--lp3-color-bg);
  color: var(--lp3-color-text-primary);
  border: var(--lp3-border-width) solid var(--lp3-color-accent-gradient-from);
}
.lp3 .btn--block {
  width: 100%;
} /* --------------------------------------------------------------------------
   5. Eyebrow / badge (shared pattern: pill label used across sections)
   -------------------------------------------------------------------------- */
.lp3 .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 17px;
  border: none;
  border-radius: var(--lp3-radius-badge);
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp3-color-accent);
  font-size: var(--lp3-fs-badge);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}
.lp3 .eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lp3-border-width);
  background:
    linear-gradient(
      180deg,
      rgba(205, 140, 86, 0.4) 0%,
      rgba(141, 87, 49, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) -11.9%,
      rgba(255, 255, 255, 0) 19.08%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
} /* Gradient headline text (mirrors Figma's white → grey text fills) */
.lp3 .gradient-text {
  background: linear-gradient(180deg, #ffffff 14%, #bbbbbb 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp3 .gradient-text--accent {
  /* background: linear-gradient(100deg, #c17b48 5%, #7f4a23 90%); */

  background: linear-gradient(270.59deg, #7f4a23 4.98%, #ffffff 89.48%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
} /* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.lp3 .header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp3-color-border-muted);
}
.lp3 .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.lp3 .header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.lp3 .header__logo-mark {
  width: 34px;
  height: 40px;
  flex-shrink: 0;
}
.lp3 .header__nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.lp3 .header__link {
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: capitalize;
}
.lp3 .header__link:hover {
  color: var(--lp3-color-accent);
}
.lp3 .lang-switcher {
  position: relative;
}
.lp3 .header__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.lp3 .header__lang-icon {
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
}
.lp3 .header__lang[aria-expanded='true'] .header__lang-icon {
  transform: rotate(180deg);
}
.lp3 .lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 72px;
  background: #1c2130;
  border: 1px solid rgba(205, 140, 86, 0.3);
  border-radius: 10px;
  padding: 8px;
  list-style: none;
  z-index: 2000;
}

.lp3 .lang-switcher--mobile .lang-switcher__dropdown {
  left: 0;
  right: auto;
  top: calc(100% + 4px);
}
.lp3 .lang-switcher__dropdown li, 
.lp3 .lang-switcher--mobile .lang-switcher__dropdown li {
  line-height: 2;
}
.lp3 .lang-switcher__option {
  display: inline-block;
  padding: 12px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.lp3 .lang-switcher__option:hover {
  background: rgba(255, 255, 255, 0.07);
}
.lp3 .lang-switcher__option[aria-selected='true'] {
  color: #cd8c56;
}
.lp3 .header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.lp3 .header__burger-icon,
.lp3 .header__burger-icon::before,
.lp3 .header__burger-icon::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lp3-color-text-primary);
  border-radius: 2px;
  transition:
    transform var(--lp3-transition-base),
    opacity var(--lp3-transition-base);
}
.lp3 .header__burger-icon {
  position: relative;
}
.lp3 .header__burger-icon::before {
  position: absolute;
  top: -7px;
}
.lp3 .header__burger-icon::after {
  position: absolute;
  top: 7px;
}
.lp3 .header__burger[aria-expanded='true'] .header__burger-icon {
  background: transparent;
}
.lp3 .header__burger[aria-expanded='true'] .header__burger-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.lp3 .header__burger[aria-expanded='true'] .header__burger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.lp3 .mobile-menu {
  border-top: 1px solid var(--lp3-color-border-muted);
  background: #000;
}
.lp3 .mobile-menu[hidden] {
  display: none;
}
.lp3 .mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px var(--lp3-container-pad) 28px;
}
.lp3 .mobile-menu__item .header__link,
.lp3 .mobile-menu__item .header__lang {
  display: flex;
  width: 100%;
  padding: 14px 4px;
  border-bottom: 1px solid var(--lp3-color-border-muted);
}
.lp3 .mobile-menu__item--cta {
  padding-top: 8px;
}

@media (min-width: 768px) {
  .lp3 .header__nav {
    display: flex;
  }
  .lp3 .header__burger {
    display: none;
  }
  .lp3 .mobile-menu {
    display: none !important;
  }
} /* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.lp3 .hero {
  position: relative;
  isolation: isolate;
  --lp3-section-gap: 64px;
  padding-block: 56px var(--lp3-section-gap);
}
.lp3 .hero__inner {
  display: grid;
  gap: 20px;
  align-items: center;
}
.lp3 .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp3-color-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lp3 .hero__badge-icon {
  width: 22px;
  height: 6px;
}
.lp3 .hero__title {
  font-size: var(--lp3-fs-hero);
  font-weight: 700;
  line-height: 108%;
  letter-spacing: -0.02em;
  
}
.lp3 .hero__title-accent {
  color: var(--lp3-color-accent);
}
.lp3 .hero__cta {
  margin-top: 32px;
}
.lp3 .hero__visual {
  position: relative;
  border-radius: var(--lp3-radius-card);
  overflow: hidden;
  aspect-ratio: 1129 / 680;
}
.lp3 .hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .lp3 .hero {
    --lp3-section-gap: 96px;
  }
  
}
@media (min-width: 1240px) {
.lp3 .hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    max-width: 600px;
    transform: translate(0%, -5%);
    z-index: -1;
  }

  .lp3 .hero__title {
    max-width: 16ch;
  }
}
@media (min-width: 1440px) {
  .lp3 .hero {
    --lp3-section-gap: 140px;
  }

  .lp3 .hero__title {
    max-width: 20ch;
  }
  .lp3 .hero__inner {
    grid-template-columns: 0.75fr 1fr;
    gap: 40px;
  }
  .lp3 .hero__visual {    
    max-width: 829px;
  }
}
@media (min-width: 1920px) {
  .lp3 .hero__visual {
    max-width: 1086px;
    transform: translate(0%, -25%);
  }
} /* --------------------------------------------------------------------------
   8. Audience (Affiliates / Advertisers cards)
   -------------------------------------------------------------------------- */
.lp3 .audience {
  padding-block: var(--lp3-section-gap);
}
.lp3 .audience__grid {
  display: grid;
  gap: 24px;
}
.lp3 .audience__card {
  position: relative;
  padding: 32px 24px 86px;
  border: var(--lp3-border-width) solid transparent;
  border-radius: var(--lp3-radius-card);
  background:
    linear-gradient(
        180deg,
        var(--lp3-color-card-bg-from) 0%,
        var(--lp3-color-card-bg-via) 8%,
        var(--lp3-color-card-bg-from) 54%,
        var(--lp3-color-card-bg-to) 100%
      )
      padding-box,
    linear-gradient(
        180deg,
        rgba(205, 140, 86, 0.4) 0%,
        rgba(141, 87, 49, 0.4) 100%
      )
      border-box,
    linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24) -11.9%,
        rgba(255, 255, 255, 0) 19.08%
      )
      border-box;
  overflow: hidden;
  isolation: isolate;
}
.lp3 .audience__card--content {
  max-width: 100%;
}
.lp3 .audience__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}
.lp3 .audience__visual img {
  width: 240px;
  height: auto;
  display: block;
  margin-left: auto;
}

@media (min-width: 768px) {
  .lp3 .audience__visual img {
    width: 65%;
  }
}
@media (min-width: 1024px) {
  .lp3 .audience__visual {
    right: -10%;
    bottom: 0%;
  }
  .lp3 .audience__visual img {
    width: 55%;
  }
}
@media (min-width: 1440px) {
.lp3 .audience__visual {
    bottom: -10%;
  }
}
.lp3 .audience__badge {
  margin-bottom: 28px;
}
.lp3 .audience__title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3.125rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.lp3 .audience__text {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body-sm);
  line-height: 1.8;
  /* max-width: 46ch; */
  margin-bottom: 28px;
}
.lp3 .audience__list {  
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: fit-content;
}
.lp3 .audience__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body-sm2);
}
.lp3 .audience__check {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
}
.lp3 .audience__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  position: relative;
  z-index: 1;
  font-size: var(--lp3-fs-body-sm2);
}
.lp3 .audience__actions .btn--block {
  width: 65%;
  white-space: wrap;
}

@media (min-width: 768px) {
  .lp3 .audience__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp3 .audience__list {  
    max-width: 72%;
  }
}

@media (min-width: 1024px) {
  .lp3 .audience__card {
    padding: 40px;
    min-height: 560px;
  }
  .lp3 .audience__text {
    font-size: var(--lp3-fs-body);
  }  
  .lp3 .audience__actions .btn--block {
    width: fit-content;
  }
  .lp3 .audience__actions .btn--block {
    white-space: wrap;
  }
  .lp3 .audience__list-item {
    font-size: var(--lp3-fs-body-lg);
  }
} 
@media (min-width: 1440px) {
.lp3 .audience__text {
  max-width: 46ch;
}
  .lp3 .audience__list {  
    max-width: fit-content;
  }
}

/* --------------------------------------------------------------------------
   9. Advantages
   -------------------------------------------------------------------------- */
.lp3 .advantages {
  padding-block: var(--lp3-section-gap);
}
.lp3 .advantages__header {
  text-align: center;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lp3 .advantages__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--lp3-color-accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp3 .advantages__rule {
  width: 40px;
  height: 1px;
  background: var(--lp3-color-accent);
  display: inline-block;
}
.lp3 .advantages__title {
  font-size: var(--lp3-fs-h2-lg);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.lp3 .advantages__subtitle {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body);
}
.lp3 .advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp3 .advantages__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  min-height: 200px;
  padding: 16px;
  border: var(--lp3-border-width) solid transparent;
  border-radius: var(--lp3-radius-card);
  background:
    linear-gradient(
        180deg,
        var(--lp3-color-card-bg-from) 0%,
        var(--lp3-color-card-bg-via) 8%,
        var(--lp3-color-card-bg-from) 54%,
        var(--lp3-color-card-bg-to) 100%
      )
      padding-box,
    linear-gradient(
        180deg,
        rgba(205, 140, 86, 0.4) 0%,
        rgba(141, 87, 49, 0.4) 100%
      )
      border-box,
    linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24) -11.9%,
        rgba(255, 255, 255, 0) 19.08%
      )
      border-box;
  overflow: hidden;
}
@media (min-width: 768px) {
  .lp3 .advantages__grid {
    gap: 24px;
  }
  .lp3 .advantages__card {
    grid-template-columns: minmax(0, 40%) 1fr;
    gap: 16px;
    padding: 24px;
  }
}
.lp3 .advantages__card-image {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
}
.lp3 .advantages__card div {
  /* max-width: 100px; */
}
@media (min-width: 680px) {
  .lp3 .advantages__card div {
    max-width: fit-content;
  }
}
.lp3 .advantages__number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lp3-color-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.lp3 .advantages__number-rule {
  width: 20px;
  height: 1px;
  background: var(--lp3-color-accent);
  display: inline-block;
}
.lp3 .advantages__card-title {
  font-size: var(--lp3-fs-card-title);
  font-weight: 600;
  margin-bottom: 12px;
}
.lp3 .advantages__card-text {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body-sm2);
  line-height: 1.6;
  max-width: 22ch;
} /* advantages 2-col is the base; 3-col kicks in at 1200px (see below) */

@media (min-width: 1200px) {
  .lp3 .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp3 .advantages__card-text {
  font-size: var(--lp3-fs-body-sm);
  }
} /* --------------------------------------------------------------------------
   10. Tech
   -------------------------------------------------------------------------- */
.lp3 .tech {
  padding-block: var(--lp3-section-gap);
}
.lp3 .tech .container {
  position: relative;
  border-radius: var(--lp3-radius-block);
  padding-block: var(--lp3-section-gap);
}
.lp3 .tech .container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lp3-border-width);
  background:
    linear-gradient(
      180deg,
      rgba(205, 140, 86, 0.4) 0%,
      rgba(141, 87, 49, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) -11.9%,
      rgba(255, 255, 255, 0) 19.08%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.lp3 .tech__header {
  max-width: 640px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .lp3 .tech__header {
    max-width: 900px;
    margin-bottom: 40px;
  }
}
.lp3 .tech__title {
  font-size: var(--lp3-fs-h2-lg);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.lp3 .tech__subtitle {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body);
  /* max-width: 38ch; */
}
.lp3 .tech__visual {
  position: relative;
  margin: 0 0 24px;
  border-radius: var(--lp3-radius-block);
  aspect-ratio: 1277 / 660;
  background: #0d1018;
}
.lp3 .tech__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lp3-border-width);
  background:
    linear-gradient(
      180deg,
      rgba(205, 140, 86, 0.4) 0%,
      rgba(141, 87, 49, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) -11.9%,
      rgba(255, 255, 255, 0) 19.08%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.lp3 .tech__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--lp3-radius-block) - var(--lp3-border-width));
  overflow: hidden;
}
.lp3 .tech__grid {
  /* grid-template-columns: repeat(2, 1fr); */
  display: grid;

  grid-template:
    'a b' 1fr
    'c c' auto;
  gap: 20px;
  height: fit-content;
}

@media (min-width: 768px) {
  .lp3 .tech__grid {
    /* grid-template-columns: repeat(2, 1fr); */

    grid-template: 'a b c' auto;
  }
}
.lp3 .tech__card {
  padding: 20px;
  border: var(--lp3-border-width) solid transparent;
  border-radius: var(--lp3-radius-card);
  background:
    linear-gradient(
        180deg,
        var(--lp3-color-card-bg-from) 0%,
        var(--lp3-color-card-bg-via) 8%,
        var(--lp3-color-card-bg-from) 54%,
        var(--lp3-color-card-bg-to) 100%
      )
      padding-box,
    linear-gradient(
        180deg,
        rgba(205, 140, 86, 0.4) 0%,
        rgba(141, 87, 49, 0.4) 100%
      )
      border-box,
    linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24) -11.9%,
        rgba(255, 255, 255, 0) 19.08%
      )
      border-box;
}
.lp3 .tech__card:nth-child(1) {
  grid-area: a;
}
.lp3 .tech__card:nth-child(2) {
  grid-area: b;
}
.lp3 .tech__card:nth-child(3) {
  grid-area: c;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: fit-content;
}

@media (min-width: 768px) {
  .lp3 .tech__card:nth-child(3) {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.lp3 .tech__card-title {
  font-size: var(--lp3-fs-card-title);
  font-weight: 600;
  margin-bottom: 14px;
}
.lp3 .tech__card-text {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.lp3 .tech__card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .lp3 .tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }
} /* --------------------------------------------------------------------------
   11. GEO & CTA (share the same visual pattern: media + content panel)
   -------------------------------------------------------------------------- */
.lp3 .geo,
.lp3 .cta {
  padding-block: calc(var(--lp3-section-gap) * 0.45);
}
@media (min-width: 768px) {
  .lp3 .geo,
  .lp3 .cta {
    padding-block: var(--lp3-section-gap);
  }
}
.lp3 .geo__panel,
.lp3 .cta__panel {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: var(--lp3-radius-block);
  min-height: 420px;
  background: #0d1018;
}
.lp3 .geo__panel::before,
.lp3 .cta__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lp3-border-width);
  background:
    linear-gradient(
      180deg,
      rgba(205, 140, 86, 0.4) 0%,
      rgba(141, 87, 49, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) -11.9%,
      rgba(255, 255, 255, 0) 19.08%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.lp3 .geo__visual,
.lp3 .cta__visual {
  border-radius: calc(var(--lp3-radius-block) - var(--lp3-border-width));
  overflow: hidden;
  width: 280px;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.lp3 .geo__visual img,
.lp3 .cta__visual img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.lp3 .geo__content,
.lp3 .cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 24px;
}
.lp3 .geo__eyebrow,
.lp3 .cta__eyebrow {
  position: relative;
  display: inline-flex;
  padding: 8px 17px;
  border: none;
  border-radius: var(--lp3-radius-badge);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp3-color-accent);
  font-size: var(--lp3-fs-badge);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp3 .geo__eyebrow::before,
.lp3 .cta__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lp3-border-width);
  background:
    linear-gradient(
      180deg,
      rgba(205, 140, 86, 0.4) 0%,
      rgba(141, 87, 49, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) -11.9%,
      rgba(255, 255, 255, 0) 19.08%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.lp3 .geo__title,
.lp3 .cta__title {
  font-size: var(--lp3-fs-h2-lg);
  font-weight: 700;
  line-height: 1.35;
}
.lp3 .geo__text,
.lp3 .cta__text {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body);
  /* max-width: 34ch; */
}

@media (min-width: 768px) {
  .lp3 .geo__panel
  {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    align-items: center;
  }
  .lp3 .cta__panel {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    align-items: center;
  }
  .lp3 .geo__content,
  .lp3 .cta__content {
    padding: 40px;
    justify-content: space-between;
  } /* GEO: visual left (HTML order), content right — natural, no override needed */ /* CTA: content left, visual right — reversed via order */
  .lp3 .cta__content {
    order: 1;
  }
  .lp3 .cta__visual {
    order: 2;
  }
  .lp3 .geo__visual,
  .lp3 .cta__visual {
      width: 100%;
  }
} 

@media (min-width: 1240px) {
 .lp3 .geo__panel,
  .lp3 .cta__panel {    
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.lp3 .footer {
  border-top: 1px solid var(--lp3-color-border-muted);
  padding-block: 40px;
}
.lp3 .footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.lp3 .footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.lp3 .footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.lp3 .footer__link {
  color: var(--lp3-color-text-secondary);
  font-size: var(--lp3-fs-body-sm);
}
.lp3 .footer__link:hover {
  color: var(--lp3-color-text-primary);
}
.lp3 .footer__copy {
  color: var(--lp3-color-text-secondary);
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .lp3 .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
} /* --------------------------------------------------------------------------
   13. Large desktop refinement
   -------------------------------------------------------------------------- */

@media (min-width: 1920px) {
  .lp3 .container {
    max-width: 1760px;
  }
}

@media (min-width: 1920px) {
  .lp3 .advantages__subtitle,
  .lp3 .tech__subtitle,
  .lp3 .geo__text,
  .lp3 .cta__text {
    font-size: 24px;
  }
}
