
    .lzwcu-section,
    .lzwcu-section * {
      box-sizing: border-box;
    }

    .lzwcu-section {
      --lzwcu-brand: #c45b2d;
      --lzwcu-brand-dark: #a44320;
      --lzwcu-brand-darker: #873318;
      --lzwcu-heading: #20252b;
      --lzwcu-copy: #505963;
      --lzwcu-bg: #fbf5f1;
      --lzwcu-card: #ffffff;
      --lzwcu-border: #eadbd3;
      --lzwcu-shadow: 0 14px 36px rgba(73, 43, 27, 0.08);
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: clamp(64px, 7vw, 104px) 20px;
      color: var(--lzwcu-copy);
      background:
        radial-gradient(
          circle at 92% 10%,
          rgba(196, 91, 45, 0.12),
          transparent 25%
        ),
        var(--lzwcu-bg);
      font-family: inherit;
    }

    .lzwcu-container {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .lzwcu-header {
      max-width: 780px;
      margin: 0 auto clamp(36px, 5vw, 56px);
      text-align: center;
    }

    .lzwcu-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 14px;
      color: var(--lzwcu-brand-dark);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .lzwcu-eyebrow::before {
      width: 24px;
      height: 2px;
      background: var(--lzwcu-brand);
      content: "";
    }

    .lzwcu-title {
      margin: 0;
      color: var(--lzwcu-heading);
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 750;
      letter-spacing: -0.035em;
      line-height: 1.12;
    }

    .lzwcu-title-accent {
      color: var(--lzwcu-brand);
    }

    .lzwcu-intro {
      max-width: 720px;
      margin: 20px auto 0;
      font-size: clamp(16px, 1.7vw, 18px);
      line-height: 1.75;
    }

    .lzwcu-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
      gap: clamp(28px, 4vw, 48px);
      align-items: stretch;
    }

    .lzwcu-visual {
      position: relative;
      min-height: 570px;
      overflow: hidden;
      border: 1px solid rgba(196, 91, 45, 0.14);
      border-radius: 24px;
      background: #e8ded8;
      box-shadow: var(--lzwcu-shadow);
      isolation: isolate;
    }

    .lzwcu-visual::after {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(26, 20, 17, 0.78) 100%
      );
      content: "";
      pointer-events: none;
    }

    .lzwcu-visual img {
      width: 100%;
      height: 100%;
      min-height: 570px;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform 0.55s ease;
    }

    .lzwcu-visual:hover img {
      transform: scale(1.025);
    }

    .lzwcu-visual-caption {
      position: absolute;
      right: 28px;
      bottom: 28px;
      left: 28px;
      z-index: 2;
      color: #ffffff;
    }

    .lzwcu-visual-caption strong {
      display: block;
      margin-bottom: 6px;
      font-size: 22px;
      line-height: 1.3;
    }

    .lzwcu-visual-caption span {
      display: block;
      color: rgba(255, 255, 255, 0.86);
      font-size: 15px;
      line-height: 1.6;
    }

    .lzwcu-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .lzwcu-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .lzwcu-card {
      min-height: 226px;
      padding: 26px;
      border: 1px solid var(--lzwcu-border);
      border-radius: 18px;
      background: var(--lzwcu-card);
      box-shadow: 0 8px 24px rgba(73, 43, 27, 0.045);
      transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
    }

    .lzwcu-card:hover {
      border-color: rgba(196, 91, 45, 0.55);
      box-shadow: 0 14px 30px rgba(73, 43, 27, 0.09);
      transform: translateY(-4px);
    }

    .lzwcu-icon {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 19px;
      border-radius: 14px;
      color: var(--lzwcu-brand);
      background: rgba(196, 91, 45, 0.1);
    }

    .lzwcu-icon svg {
      width: 25px;
      height: 25px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.8;
    }

    .lzwcu-card h3 {
      margin: 0 0 10px;
      color: var(--lzwcu-heading);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.35;
    }

    .lzwcu-card p {
      margin: 0;
      font-size: 15px;
      line-height: 1.68;
    }

    .lzwcu-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 25px 28px;
      border-radius: 18px;
      color: #ffffff;
      background: var(--lzwcu-brand);
      box-shadow: 0 14px 30px rgba(196, 91, 45, 0.2);
    }

    .lzwcu-cta-copy strong {
      display: block;
      margin-bottom: 5px;
      font-size: 19px;
      line-height: 1.35;
    }

    .lzwcu-cta-copy span {
      display: block;
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      line-height: 1.55;
    }

    .lzwcu-actions {
      display: flex;
      flex: 0 0 auto;
      gap: 10px;
    }

    .lzwcu-button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      text-align: center;
      text-decoration: none;
      transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
    }

    .lzwcu-button-primary {
      color: var(--lzwcu-brand-darker);
      background: #ffffff;
    }

    .lzwcu-button-secondary {
      border-color: rgba(255, 255, 255, 0.48);
      color: #ffffff;
      background: transparent;
    }

    .lzwcu-button:hover {
      transform: translateY(-2px);
    }

    .lzwcu-button-primary:hover {
      color: #ffffff;
      background: var(--lzwcu-brand-darker);
    }

    .lzwcu-button-secondary:hover {
      border-color: #ffffff;
      background: rgba(255, 255, 255, 0.12);
    }

    .lzwcu-button:focus-visible {
      outline: 3px solid #ffffff;
      outline-offset: 3px;
    }

    .lzwcu-arrow {
      font-size: 18px;
      line-height: 1;
      transform: translateY(-1px);
    }

    @media (max-width: 1020px) {
      .lzwcu-layout {
        grid-template-columns: 1fr;
      }

      .lzwcu-visual,
      .lzwcu-visual img {
        min-height: 460px;
      }
    }

    @media (max-width: 760px) {
      .lzwcu-section {
        padding-right: 16px;
        padding-left: 16px;
      }

      .lzwcu-header {
        text-align: left;
      }

      .lzwcu-intro {
        margin-left: 0;
      }

      .lzwcu-grid {
        grid-template-columns: 1fr;
      }

      .lzwcu-card {
        min-height: auto;
      }

      .lzwcu-cta {
        align-items: stretch;
        flex-direction: column;
      }

      .lzwcu-actions {
        width: 100%;
      }

      .lzwcu-button {
        flex: 1 1 0;
      }
    }

    @media (max-width: 520px) {
      .lzwcu-visual,
      .lzwcu-visual img {
        min-height: 390px;
      }

      .lzwcu-visual-caption {
        right: 20px;
        bottom: 20px;
        left: 20px;
      }

      .lzwcu-card {
        padding: 22px;
      }

      .lzwcu-actions {
        flex-direction: column;
      }

      .lzwcu-button {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .lzwcu-section *,
      .lzwcu-section *::before,
      .lzwcu-section *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }
  